Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Working with jQuery

Showing 11 to 20 out of 46 Questions
11.
Is jQuery a W3C standard?
JQuery એ W3C સ્ટાન્ડર્ડ છે?
(a) No
(b) Yes
Answer:

Option (a)

12.
What does the min mean in the following JavaScript code?
<script src="jquery-1.4.2.min.js">
</script>
નીચેના જાવાસ્ક્રિપ્ટ કોડમાં min નો અર્થ શું છે?
<script src="jquery-1.4.2.min.js">
</script>
(a) Minimised version
(b) Miniature
(c) Minimised parameters
(d) Minimum value
Answer:

Option (a)

13.
Which of the following is an equivalent replacement of $(document).ready(f)?
નીચેના માથી ક્યું  $(document).ready(f) ની બદલી માં equivalent છે?
(a) jQuery(f)
(b) $(f)
(c) #(f)
(d) read(f)
Answer:

Option (b)

14.
What is the correct syntax of jQuery?
Jquery ની સાચી વાક્યરચના શું છે?
(a) action().$(selector)
(b) $(selector).action()
(c) (selector)$.action()
(d) action().(selector)$
Answer:

Option (b)

15.
jQuery uses CSS selectors to select elements?
jQuery એલિમેંટ સિલેક્ટ કરવા માટે CSS selectorનો ઉપયોગ કરે છે?
(a) FALSE
(b) TRUE
Answer:

Option (b)

16.

Which sign does jQuery use as a shortcut for jQuery?

JQuery માટે કઈ sign jQuery માટે શોર્ટકટ તરીકે ઉપયોગી છે?

(a)

% sign

(b)

? Sign

(c)

$ sign

(d)

* sign

Answer:

Option (c)

17.
With jQuery, look at the following selector: $("div"). What does it select?
JQuery સાથે, નીચેના selectorને જુઓ: $ ("div"). તે શું સિલેક્ટ કરે છે?
(a) The first div element
પહેલો div element
(b) The last div element
છેલ્લો div element
(c) Specify div element
સ્પેકિફી div element
(d) All div elements
બધા div elements
Answer:

Option (d)

18.

The jQuery html() method works for both HTML and XML documents.

ડોકયુમેંટJQuery html () મેથડ એ HTML અને XML docum બંને માટે કાર્ય કરે છે.

(a)

FALSE

(b)

TRUE

Answer:

Option (a)

19.
What is the correct jQuery code to set the background color of all p elements to red?
બધા p એલિમેંટના background color ને red color માં સેટ કરવા માટે સાચો jQuery કોડ શું છે?
(a) $("p").layout("background-color","red");
(b) $("p").manipulate("background-color","red");
(c) $("p").css("background-color","red");
(d) $("p").style("background-color","red");
Answer:

Option (c)

20.
With jQuery, look at the following selector: $("div.intro"). What does it select?
JQuery સાથે, નીચેના selector ને જુઓ: $ ("Div.intro"). તે શું સિલેક્ટ કરે છે?
(a) The first div element with class="intro"
પહેલા div element સાથે class="intro"
(b) The first div element with id="intro"
પહેલા div element સાથે id="intro"
(c) All div elements with class="intro"
બધા div element સાથે class="intro"
(d) All div elements with id="intro"
બધા div elements સાથે id="intro"
Answer:

Option (c)

Showing 11 to 20 out of 46 Questions