Solved Objective Questions on jQuery Library set-1
1) Which of the following statements about the features of jQuery are True. i) jQuery has an expressive syntax for referring to elements in the document. ii) jQuery has an efficient query method for finding the set of document elements that match a CSS selector. iii) jQuery has a useful set of methods for manipulating selected elements. A. i, ii and iii only B. i, ii and iv only C. i, iii and iv only D. All i, ii, iii and iv 2) If you are using $ in your own code, or are using another library, such as prototype, that uses $, you can call .......... to restore $ to its original value. A. jQuery.noConflict() B. jQuery.removeConflict() C. jQuery.restoreDefault() D. jQuery.restoreFunction() 3) Which of the following is/are the sources of Content Distribution Network(CDN) for jQuery. A. jQuery CDN B. Microsoft CDN C. Google CDN D. All of the above 4) Which of the following are the different ways of invoking jQuery() function. i) invoke $() is to pass a CSS selector to it ii) invoke $() is t...