Logo

Javascript Questions Set 37:

Quiz Mode

How do you remove an element from the end of an array?

1
2
3
4

Solution:

Which attribute is common to both audio and video?

1
2
3
4

Solution:

Which of the following are not key event properties?

1
2
3
4

Solution:

Which property is used to obtain browser vendor and version information?

1
2
3
4

Solution:

Where is the error icon shown in Internet Explorer?

1
2
3
4

Solution:

Which of the following is not a valid JavaScript variable name?

1
2
3
4

Solution:

For what value does the keyCode property persist even when the Shift key is pressed for adding punctuation characters?

1
2
3
4

Solution:

What is the purpose of the PerformanceTiming.fetchStart property?

1
2
3
4

Solution:

One of the main advantages of using the src attribute is _________

1
2
3
4

Solution:

If the user presses "OK" in the dialog box, what will be the output of the following JavaScript code?

function msg()
{  
   var v = confirm("Are you sure?");  
   if(v == true)
   {  
       alert("yes");  
   }  
   else
   {  
       alert("no");  
   }  
}

1
2
3
4

Solution: