( ) | 1.Which jQuery method is used to remove selected elements?
(22) |
| (1) | Both methods can be used |
| (2) | remove() |
| (3) | detach() |
| (4) | N/A |
| (5) | I don't know |
( ) | 2.Which jQuery method returns the direct parent element of the selected element?
(24) |
| (1) | I don't know |
| (2) | parents() |
| (3) | ancestors() |
| (4) | ancestor() |
| (5) | parent() |
( ) | 3.Which jQuery method is used to hide selected elements?
(10) |
| (1) | display(none) |
| (2) | I don't know |
| (3) | visible(false) |
| (4) | hide() |
| (5) | hidden() |
( ) | 4.What is the correct jQuery code to set the background color of all p elements to red?
(8) |
| (1) | $("p").css("background-color","red"); |
| (2) | $("p").manipulate("background-color","red"); |
| (3) | $("p").layout("background-color","red"); |
| (4) | $("p").style("background-color","red"); |
| (5) | I don't know |
( ) | 5. Is jQuery a W3C standard?
(20) |
| (1) | N/A |
| (2) | I don't know |
| (3) | No |
| (4) | Yes |
| (5) | N/A |
( ) | 6.Which sign does jQuery use as a shortcut for jQuery?
(3) |
| (1) | N/A |
| (2) | I don't know |
| (3) | the ? Sign |
| (4) | the % sign |
| (5) | the $ sign |
( ) | 7.Look at the following selector: $(":disabled"). What does it select?
(23) |
| (1) | All hidden elements |
| (2) | All elements that does not contain the text "disabled" |
| (3) | I don't know |
| (4) | All disabled input elements |
| (5) | All elements containing the text "disabled" |
( ) | 8.Which jQuery method should be used to deal with name conflicts?
(17) |
| (1) | I don't know |
| (2) | nameConflict() |
| (3) | noNameConflict() |
| (4) | noConflict() |
| (5) | conflict() |
( ) | 9.The jQuery html() method works for both HTML and XML documents
(7) |
| (1) | N/A |
| (2) | N/A |
| (3) | I don't know |
| (4) | False |
| (5) | TRUE |
( ) | 10.Look at the following selector: $("div"). What does it select?
(4) |
| (1) | I don't know |
| (2) | All div elements |
| (3) | The first div element |
| (4) | N/A |
| (5) | N/A |
( ) | 11. jQuery uses CSS selectors to select elements?
(2) |
| (1) | N/A |
| (2) | I don't know |
| (3) | TRUE |
| (4) | FALSE |
| (5) | N/A |
( ) | 12.Which jQuery method is used to set one or more style properties for selected elements?
(11) |
| (1) | I don't know |
| (2) | css() |
| (3) | html() |
| (4) | style() |
| (5) | N/A |
( ) | 13.Which of the following is correct?
(1) |
| (1) | jQuery is a JSON Library |
| (2) | N/A |
| (3) | N/A |
| (4) | I don't know |
| (5) | jQuery is a JavaScript Library |
( ) | 14.Which jQuery method is used to perform an asynchronous HTTP request?
(12) |
| (1) | I don't know |
| (2) | jQuery.ajaxSetup() |
| (3) | jQuery.ajax() |
| (4) | jQuery.ajaxAsync() |
| (5) | N/A |
( ) | 15.Look at the following selector: $("p#intro"). What does it select?
(21) |
| (1) | The p element with id="intro" |
| (2) | All p elements with class="intro" |
| (3) | N/A |
| (4) | N/A |
| (5) | I don't know |
( ) | 16.Is jQuery a library for client scripting or server scripting?
(5) |
| (1) | Server scripting |
| (2) | Client scripting |
| (3) | N/A |
| (4) | N/A |
| (5) | I don't know |
( ) | 17.What scripting language is jQuery written in?
(15) |
| (1) | I don't know |
| (2) | C# |
| (3) | VBScript |
| (4) | C++ |
| (5) | JavaScript |
( ) | 18.With jQuery, look at the following selector: $("div.intro"). What does it select?
(9) |
| (1) | The first div element with id="intro" |
| (2) | I don't know |
| (3) | All div elements with class="intro" |
| (4) | The first div element with class="intro" |
| (5) | All div elements with id="intro" |
( ) | 19.The jQuery animate() method can be used to animate ANY CSS property?
(25) |
| (1) | Only properties containing numeric values |
| (2) | All properties except the shorthand properties |
| (3) | N/A |
| (4) | I don't know |
| (5) | Yes |
( ) | 20.Which statement is true?
(14) |
| (1) | N/A |
| (2) | I don't know |
| (3) | To use jQuery, you do not have to do anything. Most browsers (Internet Explorer, Chrome, Firefox and Opera) have the jQuery library built in the browser |
| (4) | To use jQuery, you must buy the jQuery library at www.jquery.com |
| (5) | To use jQuery, you can refer to a hosted jQuery library at Google |
( ) | 21.What is the correct jQuery code for making all div elements 100 pixels high?
(13) |
| (1) | $("div").height="100" |
| (2) | $("div").height(100) |
| (3) | $("div").yPos(100) |
| (4) | N/A |
| (5) | I don't know |
( ) | 22.Is it possible to use jQuery together with AJAX?
(6) |
| (1) | I don't know |
| (2) | No |
| (3) | Yes |
| (4) | N/A |
| (5) | N/A |
( ) | 23.Look at the following selector: $("div p"). What does it select?
(19) |
| (1) | I don't know |
| (2) | All p elements inside a div element |
| (3) | The first p element inside a div element |
| (4) | All div elements with a p element |
| (5) | N/A |
( ) | 24.Which jQuery function is used to prevent code from running, before the document is finished loading?
(16) |
| (1) | $(document).ready() |
| (2) | $(body).onload() |
| (3) | $(document).load() |
| (4) | N/A |
| (5) | I don't know |
( ) | 25.Which jQuery method is used to switch between adding/removing one or more classes (for CSS) from selected elements?
(18) |
| (1) | switch() |
| (2) | switchClass() |
| (3) | I don't know |
| (4) | toggleClass() |
| (5) | altClass() |