programming languages Online Quiz - 62
Description: programming languages Online Quiz - 62 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
A Vector is declared as follows. What happens if the code tried to add 6 th element to this Vector new vector(5,10)
Is sizeof a keyword ?
Which is false about garbage collection in java
document.getElementById("trial").innerHTML() is a valid statement
window.location.href="www.google.com". The given statement when executed would result in one of the following:
onUnload event of Javascript is fired in which of the following conditions
The following piece of javascript code is going to work fine. function tryVariableArguments() { var intCnt = 0; for (intCnt = 0; intCnt < tryVariableArguments.arguments.length; intCnt++) { alert(tryVariableArguments.arguments[intCnt]); } } Trial Page tryVariableArguments('1','2','3'); tryVariableArguments('1','2'); tryVariableArguments();
Javascript does not distinguish between name of a function and a variable
innerHTML, innerText, outerHTML and outerText. What are these of Element object
All the HTML objects like Form, Select, Textarea and others are implicitly an instance of Element as well
It is possible to add custom methods and properties in pre-existing objects like String, Math and others
One can add custom method and properties to objects in javascript without using prototype as well.
Which of the following HTTP response codes indicate a successful response from the server
onreadystatechange is a method of XMLHttpRequest Object
URL accessed through XMLHttpRequest's open method is stored in the history of the browser.