Logo

Javascript Questions Set 23:

Quiz Mode

Which function is a synonym for on()?

1
2
3
4

Solution:

 The “var” and “function” are __________ 

1
2
3
4

Solution:

Which of the following is the Web application equivalent to querySelectorAll()?

1
2
3
4

Solution:

In which of the following contexts are Hooks not allowed to be called?

1
2
3
4

Solution:

Which React component provides the current location in your app with a child render prop?

1
2
3
4

Solution:

What kind of JS code is called obtrusive?

1
2
3
4

Solution:

What will be the output:

var a = Math.max() < Math.min(); var b = Math.max() > Math.min(); console.log(b); console.log(a);

1
2

Solution:

  What kind of expression is “new Point(2,3)”? 

1
2
3
4

Solution:

What will be the Output?

console.log(Math.floor(Math.random()*10));

1
2
3
4

Solution:

How does a bitwise AND operator work?

1
2
3
4

Solution: