The Google Closure Compiler can be run in ____ modes.
Which parameter can be passed to the keymap after installation?
When will the finally block be called?
1
2
4
What does the constant TYPE_BACK_FORWARD indicate?
1
2
4
Do functions in JavaScript necessarily return a value?
3
4
What is the output of the following code?
<p id="demo"></p>
var str1 = "good";
var str2 = "day";
document.getElementById("demo").innerHTML = str1 + str2;
Which of the following syntax is correct for selecting an element by tag name?
1
2
4
When do uncaught exceptions generate events?
1
2
3
4
How can we fetch the value entered in the username text field from the following code?
<body>
<form name="register">
Enter username <input value="John" id="name" name="username">
</form>
</body>
1
3
4
Which of the following is not a feature of jQuery?
1
2
3
4