Logo

Javascript Questions Set 141:

Quiz Mode

 Which of the following is not screen object property? 

1
2
3
4

Solution:

Identify the component which redirects from one path to another.

1
2
3
4

Solution:

 JavaScript Code can be called by using ____________ 

1
2
3
4

Solution:

The high-level events among the following events are:

1
2
3
4

Solution:

What is the purpose of the startTimeLogging() method?

1
2
3
4

Solution:

A declarative way to render a dynamic list of components based on values in an array is _____ .

1
2
3
4

Solution:

The let keyword cannot be used ___________


1
2
3
4

Solution:

 A JavaScript program developed on a Unix Machine ________ 

1
2
3
4

Solution:

When rendering a dynamic list of items, a good use case for using a function is:

1
2
3
4

Solution:

Calculate the output of the following code.

<!DOCTYPE html>

<html>

<head>

<title> abekus </title>

</head>

<body>

<p id= "demo"> </p>

<script>

var x = "abekus";

var y = x.indexOf("e");

document.getElementById("demo").innerHTML = y;

</script>

</body>

</html>

Solution: