The Microsoft implementation of the Netscape JavaScript language is called _________________.
A __________ is an organized block of code that handles actions generated by user events.
In JavaScript, there are __________ types of expressions.
Some methods are also called functions, because they can return values.
In JavaScript terms, a sentence on a page is an example of ____________
JavaScript offer a predefined method for determining when you should use custom objects instead of arrays for your programs.
The _____________ pair contains the domain name of the URL that issued the cookie.
The first character of a variable must not be a letter or an underscore, but subsequent characters can be letters, numbers, and the underscore character.
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.
To instantiate and then populate the properties of each new instance with actual data, you must _________ _________.
Which of the following is the JavaScript string object special character to insert a new line?
A server named www.thisserver.com can set a cookie for the domain www.thatserver.com.
A (an) _________ is a programming function that models the characteristic of abstract or real "objects" using classes.
The method toUpperCase() can also be called a function.
The _________ method, allows you to create text that is dynamically written to the window as the script is executed.
If you want to declare a variable that can be accessed by more than one function or script block in your program, you will need to declare the variable ___________________.
A _________ custom object has only one level of properties and methods associated with it
__________ is used frequently in JavaScript to combine text strings, especially in conjunction with prompt() and alert().
Function blocks begin with the keyword __________ followed by the function name.
The JavaScript object model divides objects into 3 groups. They are:
x!=y will return true if x and y are not equal.
The built in function parseFloat() __________________.
A __________ is a named space of memory, like a container that holds a value.
The form element ___________ is used for a single-line text field used for data entry.
Which is the JavaScript property that is used to inform a script that an image has finished loading?
Which special character in JavaScript is interpreted as a tab?
Which version of Netscape Navigator first supported JavaScript on Microsoft Windows?
Consider the following JavaScript code:
“parent.twoframes.frames[1].location.href = “new.htm”
Where does this code place the file new.htm in a three-frame browser window?
Can a cookie identify a user to a Web site even if that user has never submitted personal information to that site?
When using custom JavaScript objects, why should you use arrays of instantiate each object individually?
You want to comment out multiple lines of JavaScript.
Which of the following should you use in your code?
Can the practice of calling JavaScript functions from framesets be extended to calling them from different browser windows?
Methods operate on _________ instances of objects.
A function that defines methods and properties of a custom object used as a template for instances of the custom object is a _______________
Sven wants to open a new window with JavaScript, be he repeatedly receives an error message. He reviews his 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 Sven should rewrite this line of code so that no errors result when it is executed?
function empObject(name, age, department) {
this.name = name;
this.age = age;
this.department = department;
this.showOne = showOne;
}
The code above Defines a constructor function for a custom object named empObject. It contains three properties: name, age, and department. It contains one method: showOne