Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Working with JavaScript

Showing 11 to 20 out of 78 Questions
11.
What is the correct syntax for referring to an external script called "xxx.js"?
"Xxx.js" નામની external સ્ક્રિપ્ટના સંદર્ભ માટે યોગ્ય વાક્યરચના શું છે?
(a) <script name="xxx.js">
(b) <script src="xxx.js">
(c) <script href="xxx.js">
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (b)

12.
The external JavaScript file must contain the <script> tag.
External જાવાસ્ક્રિપ્ટ ફાઇલમાં <script> ટેગ હોવા આવશ્યક છે?
(a) TRUE
(b) FALSE
Answer:

Option (b)

13.
How can you add a comment in a JavaScript?
તમે જાવાસ્ક્રિપ્ટમાં comment કેવી રીતે ઉમેરી શકો છો?
(a) <!-- This is a comment -->
(b) This is a comment
(c) *This is a comment
(d) //This is a comment
Answer:

Option (d)

14.
How to insert a comment that has more than one line?
એક કરતાં વધુ લાઇનવાળી comment કેવી રીતે ઉમેરી શકીએ છે?
(a) <!-- This comment has more than one line-->
(b) /* This comment has more than one line */
(c) //This comment has more than one line //
(d) *This comment has more than one line*
Answer:

Option (b)

15.
JavaScript is the same as Java.
જાવાસ્ક્રિપ્ટ જાવા જેવી જ છે.
(a) FALSE
(b) TRUE
Answer:

Option (a)

16.
_________ keyword is used to declare variables in javascript.
_________ કીવર્ડનો ઉપયોગ જાવાસ્ક્રિપ્ટમાં variable declare કરવા માટે થાય છે.
(a) Var
(b) Dim
(c) String
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (a)

17.
How do you declare a JavaScript variable?
તમે જાવાસ્ક્રિપ્ટ variable કેવી રીતે declare કરો છો?
(a) variable carName;
(b) v carName;
(c) var carName;
(d) $variablename;
Answer:

Option (c)

18.
What is the correct JavaScript syntax to write "Hello World"?
"Hello World" લખવા માટે યોગ્ય જાવાસ્ક્રિપ્ટ વાક્યરચના શું છે?
(a) System.out.println("Hello World")
(b) println ("Hello World")
(c) document.write("Hello World")
(d) response.write("Hello World")
Answer:

Option (c)

19.
Which of the following is not a valid JavaScript variable name?
નીચેનામાંથી કયું જાવાસ્ક્રિપ્ટનું વેરીએબલ નામ valid નથી?
(a) 2names
(b) _first_and_last_names
(c) FirstAndLast
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (a)

20.

Which of the following way can be used to indicate the LANGUAGE attribute?

નીચેની રીતોમાંથી કઈ રીતે લેંગ્વેજ એટ્રીબ્યુટને સૂચવવા માટે વાપરી શકાય છે?

(a)

<LANGUAGE="JavaScriptVersion">

(b)

<SCRIPT LANGUAGE="JavaScriptVersion">

(c)

<SCRIPT LANGUAGE="JavaScriptVersion"> JavaScript statements…</SCRIPT>

(d)

<SCRIPT LANGUAGE="JavaScriptVersion"!>    JavaScript statements…</SCRIPT>

Answer:

Option (c)

Showing 11 to 20 out of 78 Questions