- 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.
Answer : A
Explaination
Yes! An anonymous function can be assigned to a variable.
Q 2 - Which built-in method returns the length of the string?
Answer : A
Explaination
length() method returns the length of the string.
Q 3 - Which built-in method returns the string representation of the number's value?
Answer : C
Explaination
toString() method returns the string representation of the number's value.
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 adds the previous selection to the current selection?
Answer : B
Explaination
The andSelf( ) method adds the previous selection to the current selection.
Q 6 - Which of the following jQuery method gets a set of elements containing the closest parent element that matches the specified selector, the starting element included?
Answer : C
Explaination
The closest( selector ) method gets a set of elements containing the closest parent element that matches the specified selector, the starting element included.
Q 7 - Which of the following jQuery method gets a set of elements containing the unique previous siblings of each of the matched set of elements?
Answer : B
Explaination
The prev( [selector] ) method gets a set of elements containing the unique previous siblings of each of the matched set of elements.
Q 8 - Which of the following jQuery method returns the outer width (including the border) of an element?
Answer : C
Explaination
The outerWidth( [margin] ) method gets the outer width (includes the border and padding by default) for the first matched element.
Q 9 - Which of the following jQuery method can be used to make a ajax call?
A - ready(url, [data], [callback] )
B - load( url, [data], [callback] )
Answer : B
Explaination
The load( url, [data], [callback] ) method load HTML from a remote file and inject it into the DOM.
Q 10 - Which of the following jQuery method loads a remote page using an HTTP request?
Answer : A
Explaination
The jQuery.ajax( options ) method loads a remote page using an HTTP request.