Which operator can be used to performs a zero-fill right-shift operation on two operands and assigns the result to the first operand?
>>>=
>===
==>>
=>>>
Using _______ statement is how you test for a specific condition.
Select
If
Switch
For
The __ operator determines the type of a given object.
typeof
void
instanceof
delete
Which is the correct order of precedence of Arithmetic operators?
+/*-
+-*/
*/+-
+*-/
Which of the following is not true about JavaScript?
It is a scripting language.
It execute with preliminary compilation.
It is a lightweight programming language.
It can be embedded directly into HTML pages.
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
Javascript is a ______________
server side scripting language.
client side scripting language.
Either (A) or (B)
Neither (A) nor (B)
Which of the following is a JavaScript datatype?
Null
Object
Undefined
All of them
Which operator can be used to Joins(concatenates) two strings and assigns the joined string to the first operand?
&
+=
+
&&
Which of the following is not a JavaScript datatype?
Boolean
Number
String
Function