programming languages Online Quiz - 79
Description: programming languages Online Quiz - 79 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Can we create multiple objects of a single class
Object parameter of init method in servlet
intern method is used for
javax.swing.tree is
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();
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
Javascript does not distinguish between name of a function and a variable
innerHTML, innerText, outerHTML and outerText. What are these of Element object
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
parseJSON is a standard function available in javascript like alert, eval and others.
document.getElementById("trial").innerHTML() is a valid statement
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
onreadystatechange is a method of XMLHttpRequest Object
POST requests can also be send through the open method of the XMLHttpRequest Object
URL accessed through XMLHttpRequest's open method is stored in the history of the browser.
Please select right set of technologies that are required for implementing Dynamic Content or DHTML in your application
How many program steps are executed when the program below is processed? data user.tables; infile jobs; input date name $ job $; run; proc sort data=user.tables; by name; run; proc print data=user.tables; run;