Logo

Javascript Questions Set 147:

Quiz Mode

 Which method is used to display a message in a dialog box? 

1
2
3
4

Solution:

What is the value of the following script?


var a;

document.write(a);

1
2
3
4

Solution:

The listener is the callback to be invoked any time an action has been dispatched.

1
2
3
4

Solution:

What is the main difference between localStorage and sessionStorage?

1
2
3
4

Solution:

What is the output of the following code?


<script>

var x = 57;

var y = true;

document.write(x / y);

</script>

1
2
3
4

Solution:

What React feature provides a way to pass data through the component tree without having to pass props down manually at every level?

1
2
3
4

Solution:

What is the correct syntax for referring to an external script called "file.js"?

1
2
3
4

Solution:

 Which is a useful way to try out small and simple Rhino programs and one-liners? 

1
2
3
4

Solution:

 What are the three important manipulations done in a for loop on a loop variable? 

1
2
3
4

Solution:

What are the rules for any reducer passed to combineReducers?

1
2
3
4

Solution: