Logo

Javascript Questions Set 114:

Quiz Mode

 For var a = (1, 5 - 1) * 2 what is the value of a? 

1
2
3
4

Solution:

Which of the following are JavaScript optimizers?

1
2
3
4

Solution:

 Which identifier is used to represent a web browser window or frame? 

1
2
3
4

Solution:

What is the output of the following code snippet?


x = 4 + "4";
document.write(x);

1
2
3
4

Solution:

Which of the following constants has the value 255?

1
2
3
4

Solution:

______() method is used to search a string with the specified pattern and return the found text as an object.

Solution:

What is the output of the following JavaScript code?


var a = 10;

if(a == 20);

document.write(a);

1
2
3
4

Solution:

 The expression of calling (or executing) a function or method in JavaScript is called ________ 

1
2
3
4

Solution:

What are synthetic events in React?

1
2
3
4

Solution:

How will be the browsing histories be affected if the windows has child windows?

1
2
3
4

Solution: