Sail E0 Webinar

MCQs

Total Questions : 180 | Page 9 of 18 pages
Question 81. Which of the following are the features of jQuery?
  1.    Efficient query method for finding the set of document elements
  2.    Expressive syntax for referring to elements in the document
  3.    Useful set of methods for manipulating selected elements
  4.    All of the mentioned
 Discuss Question
Answer: Option D. -> All of the mentioned
Question 82. Which of the following is a single global function defined in the jQuery library?
  1.    jQuery()
  2.    $()
  3.    Queryanalysis()
  4.    None of the mentioned
 Discuss Question
Answer: Option A. -> jQuery()
Question 83. Which is the code that asks for the set of all div elements in a document?
  1.    var divs = $(div);
  2.    var divs = jQuery("div");
  3.    var divs = $("div");
  4.    var divs = #("div");
 Discuss Question
Answer: Option C. -> var divs = $("div");
Question 84. Which of the following is a factory function?
  1.    $()
  2.    jQuery()
  3.    Queryanalysis()
  4.    None of the mentioned
 Discuss Question
Answer: Option B. -> jQuery()
Question 85. Which is the method that operates on the return value of $()?
  1.    show()
  2.    css()
  3.    click()
  4.    done()
 Discuss Question
Answer: Option B. -> css()
Question 86. Consider the following code snippet
script src="jquery-1.4.2.min.js">
What does the min mean?
  1.    Minimised version
  2.    Miniature
  3.    Minimised parameters
  4.    Minimum value
 Discuss Question
Answer: Option A. -> Minimised version
Question 87. Which of the following is an equivalent replacement of $(document).ready(f)?
  1.    jQuery(f)
  2.    $(f)
  3.    #(f)
  4.    None of the mentioned
 Discuss Question
Answer: Option B. -> $(f)
Question 88. Which of the following is a heavily overloaded function?
  1.    jQuery()
  2.    $()
  3.    script()
  4.    Both jQuery() and $()
 Discuss Question
Answer: Option D. -> Both jQuery() and $()
Question 89. Which of the following is a utility function in jQuery?
  1.    jQuery.each()
  2.    jQuery.parseJSON()
  3.    jQuery.noConflict()
  4.    None of the mentioned
 Discuss Question
Answer: Option C. -> jQuery.noConflict()
Question 90. Which of the following is used for parsing JSON text?
  1.    jQuery.each()
  2.    jQuery.parseJSON()
  3.    jQuery.noConflict()
  4.    None of the mentioned
 Discuss Question
Answer: Option B. -> jQuery.parseJSON()

Latest Videos

Latest Test Papers