1.
Which of the following jQuery method apply a style on an element?
2.
Which of the following jQuery method selects a subset of the matched elements?
3.
Which of these is an optional parameter in the following jQuery statement:
$(selector).hide(speed, easing, callback);
4.
What is the output of the following jQuery code:
function function3() {    
    alert(arguments.length());
}
5.
What is the output of the following jQuery code:
$.extend(false, object1, object2, object3);
6.
Which of the following jQuery method sets the height property of an element?
7.
Which of the following jQuery method gets the current offset of the first matched element, in pixels, relative to the document?
8.
Which of the following jQuery method checks if event.stopImmediatePropagation() was ever called on this event object?
9.
In jQuery, which of the following events is fired on the completion of downloading the documents?
10.
In jQuery, which of the following statements about the nextAll([selector]) method is true?