Logo

Javascript Questions Set 81:

Quiz Mode

How many properties are there in the PerformanceTiming interface?

1
2
3
4

Solution:

Which of the following is an interface?

1
2
3
4

Solution:

What is the maximum number of global symbols that can be defined by a module?

1
2
3
4

Solution:

What does a minified JavaScript file return?

1
2
3
4

Solution:

Which of the following keyboard modifier keys are not set to true when held down?

1
2
3
4

Solution:

In order to skip or seek to the desired location in a sound or video, which property becomes helpful? 

1
2
3
4

Solution:

When does the mouseover event occur?

1
2
3
4

Solution:

What is the purpose of the Block tab in a web browser or network tool?

1
2
3
4

Solution:

When do uncaught exceptions generate events?

1
2
3
4

Solution:

What will be the output of the following JavaScript code?

<p id="demo"></p>
<script>
function myFunction()
{
  var str = "Is this all there is?";
  var patt1 = /\s/g;
  var result = str.match(patt1);
  if(result)
  result=true;
  else
  result=false;
  document.getElementById("demo").innerHTML = result;
}
</script>

1
2
3
4

Solution: