a++; is the same as which of the following ?
a=a+2;
a=a+3;
a=a+1;
a=a+4;
To keep the browser from performing a script as soon as it is loaded you need to write the script as a what ?
function
delay
performance
Flexibility
Actions that can be detected by javascript are called ?
HTML
Events
Array
ArrayList
A variable that your webpage can store on or retrieve from the users computer is known as ?
Applet
Java
Cookie
Session
In JavaScript, capital letters are different from lowercase letters ?
Not on windows platforms
Yes
No
Not on Linux Platform
Which is detected when the mouse moves over a link ?
overMouse event
onMouseOver event
onRollOver event
OnMouseOut event
How do you read the first character in a string ?
stringName.charAt(0);
stringName.substring(1);
stringName.charAt(1);
stringName.charAt(2);
Which has no syntax error ?
alert("hello "+3+" times);
alert("hello "+3 times);
alert("hello +3+ times");
alert("hello "+3 +" times);
Which method will open a new window ?
popUp(PageURL,WindowName,settings);
window.launch(PageURL,WindowName,settings);
window.close(PageURL,WindowName,settings);
window.open(PageURL,WindowName,settings);
Which method is used to search for a substring ?
stringVariable.substring(subString)
stringVariable.find(subString)
stringVariable.indexOf(subString)
stringVariable.indexOf(charAt(0))