Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Object Models in JavaScript

Showing 21 to 30 out of 62 Questions
21.
Which of the following is correct property about of navigator object?
નીચેનામાંથી કઈ નેવિગેટર ઓબ્જેક્ટ વિશેની યોગ્ય property છે?
(a) appCodeName
(b) cookieEnabled
(c) appName
(d) All of these
ઉપર આપેલ બધા જ
Answer:

Option (d)

22.
What is the meaning of following JavaScript code?
<script>
document.write(navigator.appCodeName);
</script>
જાવાસ્ક્રિપ્ટ કોડનો અર્થ શું છે?
<script>
document.write(navigator.appCodeName);
</script>
(a) get code name of the browser of a visitor
વિઝિટરના બ્રાઉઝરનું કોડ નામ મેળવો
(b) set code name of the browser of a visitor
વિઝિટરના બ્રાઉઝરનું કોડ નામ સેટ કરો
(c) get version name of the browser of a visitor
વિઝિટરના બ્રાઉઝરનું વર્ઝન નામ મેળવો
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (a)

23.
Which is the method of string object?
સ્ટ્રિંગ ઓબ્જેક્ટ ની મેથડ શું છે?
(a) match()
(b) indexOf()
(c) substring()
(d) All of these
ઉપર આપેલ બધા જ
Answer:

Option (d)

24.
What is the output of the following JavaScript code?
<script> 
var a="Hello World"; 
var x=a.lastIndexOf("l"); 
document.write(x); 
</script>
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું છે?
<script> 
var a="Hello World"; 
var x=a.lastIndexOf("l"); 
document.write(x); 
</script>
                                    
(a) 2
(b) 3
(c) 9
(d) Error
Answer:

Option (c)

25.
What is the output of the following JavaScript code?
<script>
  var str = "Hello world!";
  var res = str.substring(1, 4);
  document.getElementById("demo").innerHTML = res;
</script>
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું છે?
<script>
  var str = "Hello world!";
  var res = str.substring(1, 4);
  document.getElementById("demo").innerHTML = res;
</script>
(a) world!
(b) ell
(c) orld!
(d) llo
Answer:

Option (b)

26.
What is the output of the following JavaScript code?
<script>
  var str = "How are you doing today?";
  var res = str.split(" ", 3);
  document.getElementById("demo").innerHTML = res;
</script>
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું છે?
<script>
  var str = "How are you doing today?";
  var res = str.split(" ", 3);
  document.getElementById("demo").innerHTML = res;
</script>
(a) How,are,you
(b) How are you
(c) How,are
(d) None of these
ઉપરમાંથી એકપણનહી
Answer:

Option (a)

27.
Which property is used to add properties and methods to an object?
ઓબ્જેક્ટમાં પ્રોપર્ટિ અને મેથડ ઉમેરવા માટે કઈ પ્રોપર્ટિનો ઉપયોગ થાય છે?
(a) constructor
(b) length
(c) prototype
(d) All of these
ઉપર આપેલ બધા જ
Answer:

Option (c)

28.
Which is the JavaScript Native Objects?
જાવાસ્ક્રિપ્ટ નેટિવ ઓબ્જેક્ટો કયા છે?
(a) String Object
(b) Date Object
(c) Math Object
(d) All of these
ઉપર આપેલ બધા જ
Answer:

Option (d)

29.
What is mean by "this" keyword in javascript?
જાવાસ્ક્રિપ્ટમાં "this" કીવર્ડનો અર્થ શું છે?
(a) It refers current object
તે current object ને refer કરે છે
(b) It referes previous object
તે અગાઉના objectને refer કરે છે
(c) It is variable which contains value
તે વેરીએબલ છે જેમાં વેલ્યુ શામેલ છે
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (a)

30.
__________ method is used to remove focus from the specified object.
__________ મેથડનો ઉપયોગ specify ઓબ્જેક્ટથી focus remove કરવા માટે થાય છે.
(a) blur()
(b) focus()
(c) alert()
(d) None of the above
ઉપરમાંથી એકપણનહી
Answer:

Option (a)

Showing 21 to 30 out of 62 Questions