
- 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 - Which of the following is a valid type of function javascript supports?
Answer : C
Explaination
A function in JavaScript can be either named or anonymous.
Q 2 - Which built-in method calls a function for each element in the array?
Answer : C
Explaination
forEach() method calls a function for each element in the array.
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 remove all or the specified class(es) from the set of matched elements?
Answer : A
Explaination
The removeClass(class) method remove all or the specified class(es) from the set of matched elements.
Q 5 - Which of the following jQuery method set the value of an element?
Answer : B
Explaination
The val(val) method sets the value attribute of every matched element if it is called on <input> but if it is called on <select> with the passed <option> value then passed option would be selected, if it is called on check box or radio box then all the matching check box and radiobox would be checked.
Q 6 - Which of the following jQuery method finds all the child nodes inside the matched elements (including text nodes), or the content document, if the element is an iframe?
Answer : C
Explaination
The contents( ) method finds all the child nodes inside the matched elements (including text nodes), or the content document, if the element is an iframe.
Q 7 - Which of the following jQuery method sets the height property of an element?
Answer : C
Explaination
The height( value ) method sets the CSS height of every matched element.
Q 8 - Which of the following jQuery method returns the top and left position of an element relative to its offset parent?
Answer : C
Explaination
The position( ) method gets the top and left position of an element relative to its offset parent.
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 can be used to attach a function to be executed whenever AJAX request completed successfully?
Answer : B
Explaination
The ajaxSuccess( callback ) method can be used to attach a function to be executed whenever AJAX request completed successfully.