Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Working with JavaScript

Showing 71 to 78 out of 78 Questions
71.
How does a WHILE loop start?
WHILE લૂપ કેવી રીતે શરૂ થાય છે?
(a) while(i<=10;i++)
(b) while i=1 to 10
(c) while (i<=10)
(d) None the above
ઉપરમાંથી એકપણનહી
Answer:

Option (c)

72.
How does a FOR loop start?
FOR લૂપ કેવી રીતે શરૂ થાય છે?
(a) for (i=0; i<=5; i++)
(b) for (i=0; i<=5)
(c) for (i<=5; i++)
(d) for i=1 to 5
Answer:

Option (a)

73.
Which is a more efficient JavaScript code snippet?
Code 1
for(var num=10;num>=1;num--)
{
           document.writeln(num);
}

Code 2
var num=10;
while(num>=1){
       document.writeln(num);
       num++;
}
વધુ efficient જાવાસ્ક્રિપ્ટ કોડ સ્નિપેટ કયું છે?
Code 1
for(var num=10;num>=1;num--)
{
           document.writeln(num);
}

Code 2
var num=10;
while(num>=1){
       document.writeln(num);
       num++;
}
(a) Code 1
(b) Code 2
(c) Both Code 1 and Code 2
Code 1 અને Code 2 બંને
(d) Cannot Compare
સરખામણી કરી શકાતી નથી
Answer:

Option (a)

74.

What happens in the following javaScript code snippet?

var count = 0;
while (count < 10) 
{
     console.log(count);
     count++;
}

નીચેના જાવાસ્ક્રિપ્ટ કોડ સ્નિપેટમાં શું થાય છે?

var count = 0;
while (count < 10) 
{
     console.log(count);
     count++;
}
(a)

The values of count are logged or stored in a particular location or storage

Countની વેલ્યુ કોઈ ચોક્કસ સ્થાનમાં સ્ટોરેજ અથવા logged હોય છે

(b)

The value of count from 0 to 9 is displayed in the console

0 થી 9 સુધીની countની કિંમત કન્સોલમાં ડિસ્પ્લે થાય છે

(c)

An error is displayed

ભૂલ ડિસ્પ્લે થાય છે

(d)

An exception is thrown

Exception thrown કરવામાં આવે છે

Answer:

Option (b)

75.
Which one is not the looping structures in JavaScript?
જાવાસ્ક્રિપ્ટમાં લૂપિંગ સ્ટ્રક્ચર્સ કઈ નથી?
(a) for
(b) while
(c) for in
(d) for which
Answer:

Option (d)

76.

Which loop is used to loop through an object's properties?

ઓબ્જેક્ટની પ્રોપર્ટિનો ઉપયોગ કઈ લૂપમાં થાય છે?

(a)

for

(b)

while

(c)

for in

(d)

do while

Answer:

Option (c)

77.
The keyword ‘break’ cannot be simply used within _________
કીવર્ડ ‘break’ નો ઉપયોગ ફક્ત _________ ની અંદર થઈ શકતો નથી
(a) do while
(b) if else
(c) for
(d) while
Answer:

Option (b)

78.
Which keyword is used to come out of a loop only for that iteration?
ફક્ત તે iteration માટે લૂપમાંથી બહાર આવવા માટે કયા કીવર્ડનો ઉપયોગ થાય છે?
(a) break
(b) continue
(c) return
(d) none of the mentioned
આપેલમાથી એક પણ નહીં
Answer:

Option (b)

Showing 71 to 78 out of 78 Questions