527). Which of the following is not the feature of jQuery?

[A]Efficient query method for finding the set of document elements
[B]Expressive syntax for referring to elements in the document
[C] Useful set of methods for manipulating selected elements
[D]Powerful functional programming techniques is not used for operating on sets of elements as a group

Show Answer

528). Which of the following is a single global function defined in the jQuery library?

[A] jQuery()
[B]$()
[C] Queryanalysis()
[D]global()

Show Answer

529). Which of the following is a factory function?

[A]$()
[B] jQuery()
[C]Queryanalysis()
[D]onclick()

Show Answer

530). Which is the JavaScript code that asks for the set of all div elements in a document?

[A] var divs = $(div);
[B] var divs = jQuery("div");
[C] var divs = $("div");
[D]var divs = #("div");

Show Answer

531). Which is the method that operates on the return value of $()?

[A] show()
[B]css()
[C]click()
[D]done()

Show Answer

532). What does the min mean in the following JavaScript code?

[A] Minimised version
[B]Miniature
[C]Minimised parameters
[D]Minimum value

Show Answer

533). Which of the following is a heavily overloaded function?

[A]jQuery()
[B] $()
[C] script()
[D]Both jQuery() and $()

Show Answer

534). Which of the following is an equivalent replacement of $(document).ready(f)?

[A]jQuery(f)
[B]$(f)
[C]#(f)
[D]read(f)

Show Answer

535). Which of the following is a utility function in jQuery?

[A]jQuery.each()
[B]jQuery.parseJSON()
[C]jQuery.noConflict()
[D]jQuery.conflict()

Show Answer

536). Which of the following is used for parsing JSON text?

[A] jQuery.each()
[B]jQuery.parseJSON()
[C]jQuery.noConflict()
[D]jQuery.conflict()

Show Answer

537). What will be the output of the following JavaScript code?

[A]Tables
[B]tables
[C]Undefined
[D]Error

Show Answer

538). What will be the output of the following JavaScript code?

[A]8
[B]17
[C]14
[D]10

Show Answer

539). What will be the output of the following JavaScript code?

[A]IS
[B]is
[C]Error
[D]Undefined

Show Answer

540). What will be the output of the following JavaScript code?

[A]4
[B]3
[C]1
[D]0

Show Answer

541). What will be the output of the following JavaScript code?

[A]true
[B]false
[C]error
[D]undefined

Show Answer