
- 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
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 total number of arguments passed to a function?
A - Using args.length property
Answer : B
Explaination
Using arguments.length property, we can get the total number of arguments passed to a function.
Q 2 - Which of the following is correct about callbacks?
A - A callback is a plain JavaScript function passed to some method as an argument or option.
Answer : C
Explaination
A callback is a plain JavaScript function passed to some method as an argument or option. Some callbacks are just events, called to give the user a chance to react when a certain state is triggered.
Q 3 - Which built-in method returns the calling string value converted to upper case?
Answer : A
Explaination
toUpperCase() method returns the calling string value converted to upper case.
Q 4 - Which of the following jQuery method apply a style on an element?
Answer : B
Explaination
The addClass( classes ) method can be used to apply defined style sheets onto all the matched elements. You can specify multiple classes separated by space.
Q 5 - Which of the following jQuery method reduce the set of matched elements to a single element?
Answer : B
Explaination
The eq( index ) method reduces the set of matched elements to a single element.
Q 6 - Which of the following jQuery method gets the direct parent of an element?
Answer : C
Explaination
The parent( [selector] ) method gets the direct parent of an element. If called on a set of elements, parent returns a set of their unique direct parent elements.
Q 7 - Which of the following jQuery method sets the style property of an element?
Answer : C
Explaination
The css( name, value ) method sets a style property on the first matched element.
Q 8 - Which of the following jQuery method removes set of matched elements?
Answer : C
Explaination
The remove( expr ) method removes all matched elements from the DOM.
Q 9 - Which of the following jQuery method checks if event.stopPropagation() was ever called on this event object?
Answer : B
Explaination
The isPropagationStopped() method of Event object returns whether event.stopPropagation() 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.