Logo

Javascript Questions Set 62:

Quiz Mode

Which of the following is not a framework?

1
2
3
4

Solution:

From which version of Internet Explorer is the canvas element supported?

1
2
3
4

Solution:

What should be the type of the script_url?

1
2
3
4

Solution:

What were cookies originally designed for?

1
2

Solution:

Which of the following is not a property of a plug-in entry?

1
2
3
4

Solution:

What is Traceur?

1
2
3
4

Solution:

Evaluate the output of the following code-snippet?

<p id = "check" > </p>


<script>

document.getElementById("check").innerHTML = 7 < "abekus"

</script>

Solution:

The _____ property of the accordion widget is used to open the panel when we click on the panel.

1
2
3
4

Solution:

The events that are not triggered directly by user activity are called ___________

1
2
3
4

Solution:

What will be the output of the following JavaScript code?

function showcommentform()
{
var data = "new text";
document.getElementById('mylocation').innerHTML = data;
}




1
2
3
4

Solution: