
- jQuery - Home
- jQuery - Roadmap
- jQuery - Overview
- jQuery - Basics
- jQuery - Syntax
- jQuery - Selectors
- jQuery - Events
- jQuery - Attributes
- jQuery - AJAX
- jQuery CSS Manipulation
- jQuery - CSS Classes
- jQuery - Dimensions
- jQuery - CSS Properties
- jQuery Traversing
- jQuery - Traversing
- jQuery - Traversing Ancestors
- jQuery - Traversing Descendants
- jQuery References
- jQuery - Selectors
- jQuery - Events
- jQuery - Effects
- jQuery - HTML/CSS
- jQuery - Traversing
- jQuery - Miscellaneous
- jQuery - Properties
- jQuery - Utilities
- jQuery Plugins
- jQuery - Plugins
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
jQuery - Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to jQuery Framework. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Q 1 - Which of the following is correct about jQuery?
B - The jQuery helps you a lot to develop a responsive and feature-rich site using AJAX technology.
C - The jQuery comes with plenty of built-in animation effects which you can use in your websites.
Answer : D
Explaination
All of the above options are correct.
Q 2 - Which built-in method reverses the order of the elements of an array?
Answer : B
Explaination
reverse() method reverses the order of the elements of an array -- the first becomes the last, and the last becomes the first.
Q 3 - Which built-in method sorts the elements of an array?
Answer : C
Explaination
sort() method sorts the elements of an array.
Q 4 - Which of the following jQuery method adds the specified class if it is not present, remove the specified class if it is present?
Answer : B
Explaination
The toggleClass(class) method adds the specified class if it is not present, removes the specified class if it is present.
Q 5 - Which of the following jQuery method checks the current selection against an expression?
Answer : B
Explaination
The is( selector ) method checks the current selection against an expression and returns true, if at least one element of the selection fits the given selector.
Q 6 - Which of the following jQuery method gets a set of elements containing the unique ancestors of the matched set of elements?
Answer : C
Explaination
The parents( [selector] ) method gets a set of elements containing the unique ancestors of the matched set of elements (except for the root element).
Q 7 - Which of the following jQuery method gets the inner height (excluding the border) of an element?
Answer : B
Explaination
The innerHeight( ) method gets the inner height (excludes the border and includes the padding) for the first matched element.
Q 8 - Which of the following jQuery method gets the inner width (excluding the border) of an element?
Answer : B
Explaination
The innerWidth( ) method gets the inner width (excludes the border and includes the padding) for the first matched element.
Q 9 - Which of the following jQuery method checks if event.stopImmediatePropagation() was ever called on this event object?
Answer : C
Explaination
The isImmediatePropagationStopped() method of Event object returns whether event.stopImmediatePropagation() was ever called on this event object.
Q 10 - Which of the following jQuery method setups global settings for AJAX requests?
Answer : B
Explaination
The jQuery.ajaxSetup( options ) method setups global settings for AJAX requests.