Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Working with JavaScript

Showing 21 to 30 out of 78 Questions
21.

JS code included inside head section is loaded before loading page.

JS કોડ head વિભાગમાં પેજ લોડ કરતાં પહેલાં લોડ થાય છે.

(a)

FALSE

(b)

TRUE

Answer:

Option (b)

22.
<script src="/main.js"></script> Are you sure, Above code will include External JS inside your webpage.
<script src="/main.js"></script> શું તમને ખાતરી છે કે, ઉપરના કોડમાં તમારા વેબપેજની અંદર external JS શામેલ હશે.
(a) No
(b) Yes
Answer:

Option (b)

23.
Which of the following attribute is used to include External JS code inside your HTML Document.
નીચેનામાંથી એટ્રીબ્યુટનો ઉપયોગ તમારા HTML ડોક્યુમેન્ટની અંદર external JS કોડને સમાવવા માટે થાય છે.
(a) src
(b) link
(c) ext
(d) script
Answer:

Option (a)

24.
Which was the first browser to support JavaScript ?
જાવાસ્ક્રિપ્ટને support આપવા માટે પ્રથમ બ્રાઉઝર કયું હતું?
(a) Netscape
(b) IE
(c) Mozila
(d) Chrome
Answer:

Option (a)

25.
What is the output of the following JavaScript code?
<script type="text/javascript">
 x=4+"4"; 
document.write(x); 
</script> 
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું છે?
<script type="text/javascript">
 x=4+"4"; 
document.write(x); 
</script>
                                    
(a) 44
(b) 8
(c) 4
(d) Error output
Answer:

Option (a)

26.
Which of the following type of variable is visible everywhere in your JavaScript code?
નીચેનામાંથી કયા પ્રકારનાં વેરીએબલ તમારા જાવાસ્ક્રિપ્ટ કોડમાં દરેક જગ્યાએ દેખાય છે?
(a) global variable
(b) local variable
(c) Both of the above
આપેલ બંને
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (a)

27.
Variable declared inside JavaScript Function will be called as ____________.
જાવાસ્ક્રિપ્ટ ફંક્શનની અંદર declare થયેલ વેરીએબલને ____________ કહેવામાં આવે છે.
(a) Global Variables
(b) Local Variables
Answer:

Option (b)

28.
Local Variables are destroyed after execution of function.
ફંક્શનના execution પછી લોકલ વેરીએબલ destroy પામે છે.
(a) FALSE
(b) TRUE
Answer:

Option (b)

29.
Variable declared outside JavaScript Function is called as _______________ .
જાવાસ્ક્રિપ્ટ ફંક્શનની બહાર declare થયેલ વેરીએબલને _______________ કહેવામાં આવે છે.
(a) Global Variables
(b) Local Variables
Answer:

Option (a)

30.
Among the keywords below, which one is not a true?
નીચેના કીવર્ડ્સમાંથી, કયું એક સાચું નથી?
(a) if
(b) with
(c) debugger
(d) user strict
Answer:

Option (d)

Showing 21 to 30 out of 78 Questions