Which operator can be used to Joins(concatenates) two strings and assigns the joined string to the first operand?
&
+=
+
&&
Which is the correct order of precedence of Arithmetic operators?
+/*-
+-*/
*/+-
+*-/
What is the output of this expression? x = 2 + "2"; document.write(x);
22
4
2
Syntax Error
The __ operator determines the type of a given object.
typeof
void
instanceof
delete
Which operator can be used to performs a bitwise exclusive OR opration on two operands and assigns the result to the first operand?
&*
=^
^=
*&
When a user views a page containing a JavaScript program, which machine actually executes the script?
The User's machine running a Web browser
The Web server
A central machine deep within Netscape's corporate offices
None of these
________ keyword is used to declare variables in javascript.
Var
Dim
String
_____ tag is an extension to HTML that can enclose any number of JavaScript statements.
< SCRIPT >
< BODY >
< HEAD >
< TITLE >
Using _______ statement is how you test for a specific condition.
Select
If
Switch
For
What language defines the behavior of a web page?
HTML
CSS
XML
Java Script