Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

in JavaScript, x++ will add one to the value of x after the assignment is complete.

A.

TRUE

B.

FALSE

JavaScript will support direct database access even if LiveWire is not installed on the server.

A.

FALSE

B.

TRUE

Since JavaScript is case sensitive, using lower case to refer to language objects will result in an error.

A.

FALSE

B.

TRUE

Language objects are named with a capital letter. Since JavaScript is case sensitive, using lower case to refer to one of these objects will cause an error.

A.

TRUE

B.

FALSE

An ObjectBuilder defines the properties and methods of a custom object.

A.

TRUE

B.

FALSE

The _______ indicator delineates a comment on a single line of script.

The _____ indicator is used for multiple line comments.

A.

//, /*.....*/

B.

//, /.../

C.

//,*/...*/

D.

/*.....*/, //

When the alert() method and the prompt() method are both used in the same statement, the _________ method will process first.

A.

open()

B.

prompt()

C.

alert()

D.

confirm()

JavaScript contains both Keywords that you must use to achieve specific results and Reserved words that you are not permitted to use for variable or function names.

A.

TRUE

B.

FALSE

_______ are the actions that the object property can be made to perform, such as a calculation, an onscreen move, or the writing of text in a window.

A.

Behaviors

B.

Values

C.

Methods

D.

Properties

Which if any of the following enables you to access a child window from the parent window using an object reference?

A.

The opener property of the window object

B.

The open() method of the window object

C.

The parent.parent statement

D.

None. This cannot be done.