Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Working with JavaScript

Showing 61 to 70 out of 78 Questions
61.
The “var” and “function” are __________
“Var” અને “function” __________ છે
(a) Keywords
(b) Declaration statements
(c) Data types
(d) Prototypes
Answer:

Option (b)

62.
How do you create a function in JavaScript?
તમે જાવાસ્ક્રિપ્ટમાં ફંક્શન કેવી રીતે બનાવશો?
(a) function:myFunction()
(b) function=myFunction()
(c) function myFunction()
(d) function::myFunction()
Answer:

Option (c)

63.
How do you call a function named "myFunction"?
તમે "myfunction" નામના ફંક્શનને કેવી રીતે call કરો છો?
(a) myFunction()
(b) call myFunction()
(c) call function myFunction()
(d) call function() myFunction()
Answer:

Option (a)

64.
Which of the following are capabilities of functions in JavaScript?
જાવાસ્ક્રિપ્ટમાં ફંકશનની capabilityઓ નીચેનામાંથી કઈ છે?
(a) Return a value
રિટર્ન વેલ્યુ
(b) Accept parameters and Return a value
parameter accept અને વેલ્યુ રિટર્ન કરો
(c) Accept parameters
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (c)

65.
<script language="javascript"> 
function x() 
{ 
document.write(2+5+"8"); 
} 
</script>

Output?

<script language="javascript">
function x() 
{ 
document.write(2+5+"8"); 
} 
</script>

આઉટપુટ?

(a)

258

(b)

Error

(c)

7

(d)

78

Answer:

Option (d)

66.
How to write an IF statement in JavaScript?
જાવાસ્ક્રિપ્ટમાં IF સ્ટેટમેંટ કેવી રીતે લખવું?
(a) if i=5
(b) if (i==5)
(c) if i==5 then
(d) if i=5 then
Answer:

Option (b)

67.
How to write an IF statement for executing some code if "i" is NOT equal to 5?
જો "i" એ 5 ની બરાબર ન હોય તો અમુક કોડ ચલાવવા માટે IF સ્ટેટમેંટ કેવી રીતે લખવું?
(a) if i<> 5
(b) if (i!= 5)
(c) if i!= 5 then
(d) if (i<> 5)
Answer:

Option (b)

68.
What will be the output of the following JavaScript code?
var grade='E';  
var result;  
switch(grade)
{  
    case 'A':  
        result+="10";  
    case 'B':  
        result+=" 9";  
    case 'C':  
        result+=" 8";  
    default:  
result+=" 0";  
}  
document.write(result);
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું હશે?
var grade='E';  
var result;  
switch(grade)
{  
    case 'A':  
        result+="10";  
    case 'B':  
        result+=" 9";  
    case 'C':  
        result+=" 8";  
    default:  
result+=" 0";  
}  
document.write(result);
(a) 10
(b) 0
(c) 18
(d) 17
Answer:

Option (b)

69.
The snippet that has to be used to check if “a” is not equal to “null” is _________
“a” એ “null” ની બરાબર નથી કે કેમ તે ચકાસવા માટે વાપરવા માટેનો સ્નિપેટ _________ છે
(a) if(a!=null)
(b) if (!a)
(c) if(a!null)
(d) if(a!==null)
Answer:

Option (d)

70.

What are the three important manipulations done in a for loop on a loop variable?

લૂપ વેરિયેબલ પર લૂપમાં ત્રણ મહત્વપૂર્ણ મેનિપ્યુલેશન્સ શું છે?

(a)

Updation, Incrementation, Initialization

(b)

Initialization,Testing, Updation

(c)

Testing, Updation, Testing

(d)

Initialization,Testing, Incrementation

Answer:

Option (b)

Showing 61 to 70 out of 78 Questions