
- jQuery Tutorial
- jQuery - Home
- jQuery - Overview
- jQuery - Basics
- jQuery - Syntax
- jQuery - Selectors
- jQuery - Events
- jQuery - Attributes
- jQuery - AJAX
- jQuery DOM Manipulation
- jQuery - DOM
- jQuery - Add Elements
- jQuery - Remove Elements
- jQuery - Replace Elements
- jQuery CSS Manipulation
- jQuery - CSS Classes
- jQuery - Dimensions
- jQuery - CSS Properties
- jQuery Traversing
- jQuery - Traversing
- jQuery - Traversing Ancestors
- jQuery - Traversing Descendants
- jQuery References
- 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 Useful Resources
- jQuery - Questions and Answers
- jQuery - Quick Guide
- jQuery - Useful Resources
- jQuery - Discussion
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 - How can you get the type of arguments passed to a function?
Answer : A
Explaination
Using typeof operator, we can get the type of arguments passed to a function.
Q 2 - Which built-in method combines the text of two strings and returns a new string?
Answer : B
Explaination
concat() method returns the character at the specified index.
Q 3 - Which of the following jQuery selector selects element with the given element id some-id?
Answer : B
Explaination
$('#some-id') selects the single element in the document that has an ID of some-id.
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 returns a jQuery collection with the positioned parent of the first matched element?
Answer : A
Explaination
The offsetParent( ) method returns a jQuery collection with the positioned parent of the first matched element.
Q 7 - Which of the following jQuery method finds all sibling elements in front of the current element?
Answer : B
Explaination
The prevAll( [selector] ) method finds all sibling elements in front of the current element.
Q 8 - Which of the following jQuery method gets the current offset of the first matched element, in pixels, relative to the document?
Answer : A
Explaination
The offset( ) method gets the current offset of the first matched element, in pixels, relative to the document.
Q 9 - Which of the following jQuery method can be used to attach a function to be executed whenever an AJAX request completes?
Answer : B
Explaination
The ajaxComplete( callback ) method can be used to register a callback to be executed whenever an AJAX request completes.
Q 10 - Which of the following jQuery method can be used to attach a function to be executed whenever an AJAX request is sent?
Answer : C
Explaination
The ajaxSend( callback ) method can be used to attach a function to be executed whenever an AJAX request is sent.