Logo

Javascript Questions Set 172:

Quiz Mode

Which object supports the Filesystem API?

1
2
3
4

Solution:

 Which of the following is an event emitter? 

1
2
3
4

Solution:

What was the original name of JavaScript?

1
2
3
4

Solution:

 What is the return type of typeof for standard JavaScript objects ?

1
2
3
4

Solution:

What is the task of the Advanced Panel?

1
2
3
4

Solution:

The width property of the select menu widget is used to change the width of the select menu.

1
2
3
4

Solution:

Which of the following attributes of the form tag cannot be set using the document object in JavaScript?

1
2
3
4

Solution:

Which CSS property is used to position an object to the left side of the screen?

1
2
3
4

Solution:

What will be the output of the following JavaScript code?

<p>The result of adding "5" + 2 + 3:</p>
<p id="demo"></p>
<script>
x = "5" + 2 + 3;
document.getElementById("demo").innerHTML = x;
</script>

1
2
3
4

Solution:

During the traversal of a stack, where does a locally scoped variable go after it has been used?

1
2
3
4

Solution: