Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Working with JavaScript

Showing 51 to 60 out of 78 Questions
51.
What is the correct way to write a JavaScript array?
જાવાસ્ક્રિપ્ટ એરે લખવાની સાચી રીત કઈ છે?
(a) var colors = ["red", "green", "blue"]
(b) var colors = "red", "green", "blue"
(c) var colors = 1= ("red"), 2=( "green"),3=( "blue")
(d) var colors = (1:"red", 2:"blue", 3:"black")
Answer:

Option (a)

52.
Which of the following code creates an object?
નીચેનો કયો કોડ ઓબ્જેક્ટ બનાવે છે?
(a) var book = Object();
(b) var book = new Object();
(c) var book = new OBJECT();
(d) var book = new Book();
Answer:

Option (b)

53.
Which built-in method adds one or more elements to the end of an array and returns the new length of the array?
કઈ બિલ્ટ-ઇન મેથડ એરેના અંતમાં એક અથવા વધુ એલિમેંટ ઉમેરશે અને એરેની નવી length returns કરે છે?
(a) last()
(b) put()
(c) push()
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (c)

54.
Which of the following function of String object returns the characters in a string beginning at the specified location through the specified number of characters?
સ્ટ્રિંગ ઓબ્જેક્ટનું નીચેનું કયું કાર્ય, charactersની સ્પષ્ટ સંખ્યા દ્વારા specify locationથી શરૂ થયેલ stringમાં characters આપે છે?
(a) slice()
(b) split()
(c) substr()
(d) search()
Answer:

Option (c)

55.
"What will be the output of the following JavaScript code?
var values=[1,2,3,4]  
var ans=values.slice(1);  
document.writeln(ans);
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું હશે?
var values=[1,2,3,4]  
var ans=values.slice(1);  
document.writeln(ans);
(a) 1, 2, 3, 4
(b) 2, 3, 4
(c) 1, 3, 4
(d) error
Answer:

Option (d)

56.
"What will be the output of the following JavaScript code?
var values=["one","two","Three"];  
var ans=values.shift();  
document.writeln(ans);
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું હશે?
var values=["one","two","Three"];  
var ans=values.shift();  
document.writeln(ans);
(a) one
(b) two
(c) three
(d) error
Answer:

Option (a)

57.
"What will be the output of the following JavaScript code?
var arr=[1,2,3];  
var rev=arr.reverse();  
document.writeln(rev);
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું હશે?
var arr=[1,2,3];  
var rev=arr.reverse();  
document.writeln(rev);
(a) 1, 2, 3
(b) 3,2,1
(c) 3
(d) 1
Answer:

Option (b)

58.
The _______ method of an Array object adds and/or removes elements from an array.
એરે ઓબ્જેક્ટની _______ મેથડ એરેમાંથી એલિમેંટને ઉમેરી અને / અથવા દૂર કરે છે.
(a) Reverse
(b) Shift
(c) Slice
(d) Splice
Answer:

Option (d)

59.
The ______ method removes the last element of an array, and returns that element.
______ મેથડ એરેના છેલ્લા એલિમેંટને દૂર કરે છે અને તે એલિમેંટને રિટર્ન કરે છે.
(a) pop
(b) push
(c) slice
(d) shift
Answer:

Option (a)

60.
The ______ method removes the first element of an array, and returns that element.
______ મેથડ એરેના પહેલા એલિમેંટને દૂર કરે છે અને તે એલિમેંટને રિટર્ન કરે છે.
(a) pop
(b) push
(c) slice
(d) shift
Answer:

Option (d)

Showing 51 to 60 out of 78 Questions