To instantiate and then populate the properties of each new instance with actual data, you must _________ _________.
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.
in JavaScript, x++ will add one to the value of x after the assignment is complete.
The _________ method, allows you to create text that is dynamically written to the window as the script is executed.
JavaScript is a strong object-oriented language that relies, for a large part of its functionality, on objects and their attendant methods and properties.
In programming, _____ encapsulate predesignated attributes and behaviors.
Since JavaScript is case sensitive, using lower case to refer to language objects will result in an error.
|| is a comparison operator.
JavaScript was the first scripting language developed for Webpage design.
The variable name "firstname" is the same as variable name "FirstName".
_________ is used to associate an object's name with the object's properties or methods.
The __________ is the building block of all custom objects.
Which form element would you use to create a scriptable button other than a reset or submit button?
Some methods are also called functions, because they can return values.
With JavaScript, it is possible to change two frames simultaneously.
To do this, you must write a function that includes _________________
Which of the following would be the correct JavaScript way to make a text string appear in bold print?
Which of the following is the term for a single line of JavaScript code that is executed in a script or program?
What is the primary method for deleting cookies?
Which property of the location object specifies the internal link anchor name, which is followed by the number sign (#) in the URL?
When using custom JavaScript objects, why should you use arrays of instantiate each object individually?
Consider the various JavaScript methods, such as alert(), prompt(), and confirm(). These methods are methods of which object?
Which special character in JavaScript is interpreted as a new line?
Which property of the navigator object identifies the operating system for which the browser was compiled?
Chiyo wants to open a new window with JavaScript, but she repeatedly receives an error message. She reviews her code, as shown: open ("http://www.prolific.com ", "Pro Window" , "toolbar = 1 ,location = 1 ,menubar = 1 , scrollbars = 1 ,status = 1 ,resizable = 1"); Which one of the following choices shows how Chiyo should rewrite this line of code so that no errors result when it is executed?
The ________ method request user input through a text field within a dialog box.
Consider the following HTML:
<|>|>
Which method of the String object is used to write the JavaScript equivalent to this HTML?
The first character of a variable must be a letter or an underscore, but subsequent characters can be letters, numbers, and the underscore character.
A function that defines methods and properties of a custom object used as a template for instances of the custom object is a _______________
Which JavaScript object should be used to create buttons that animate whenever the mouse pointer passes over them?
When using frames, where should functions and variables be stored in a JavaScript-based Web site?
A way to exit a loop that would otherwise continue to execute is to use the break statement. If a condition is reached, the user is allowed to break out of the loop. You can use the break statement within the ______________.
Which one of the following is an action that can be performed by an object?
The form element ___________ is used for a single-line text field used for data entry.
In JavaScript, which of the following will clear a cookie?
The JavaScript object model divides objects into 3 groups. They are:
Which of the following is the proper file extension for an external script file.