Logo

Javascript Questions Set 35:

Quiz Mode

In general, an event handler is a ________.

1
2
3
4

Solution:

 JavaScript Code can be called by using __________ 

1
2
3
4

Solution:

The syntax of a blur method in a button object is _______.

1
2
3
4

Solution:

The canvas object does not have which of the following property?

1
2
3
4

Solution:

Which is the correct way to find all the img elements in the document?

1
2
3
4

Solution:

Which property gives access to the JavaScript memory usage data?

1
2
3
4

Solution:

What is Microsoft's proprietary client-side storage mechanism in Internet Explorer?

1
2
3
4

Solution:

What is the purpose of the disconnectionEvent?

1
2
3
4

Solution:

<p id = "tuf"></p>

<script>

function demo()

{

  var ans = "";

  ans = ans + Number.isFinite(10-8);

  document.getElementById("tuf").innerHTML = ans;

}

</script>

1
2
3
4

Solution:

What are the events that are directly tied to a specific input device called?

1
2
3
4

Solution: