A user can never delete or disable cookies
Placing // in front of a line of text, within the Script tags will result in ______________
In JavaScript, ++x+ will add one to the value of x after the assignment is complete.
JavaScript is an event-driven programming language. Events trigger _________.
VBScript was the first scripting language developed for Webpage design.
What willthe following JavaScript code do when it runs?
<SCRIPT Language="JavaScript">
<!--
var d=new Date;
var h=d.getHours();
var msg="";
var targ;
if(h<12)
msg="<h1>Good Morning!</h1>";
else if(h>=12 && h<18)
msg="<h1>Good Afternoon!</h1>";
else
msg="<h1>Good Evening!<h1>";
document.write(msg);
/-->
</SCRIPT>
The ____________ contains path information for the URL that issued the cookie.
The form element ___________ is used for a single-line text field used for data entry.
Regarding cookies: If the expires attribute is not used, when will the cookie expire?
In JavaScript terms, a sentence on a page is an example of ____________
The button object is the simplest of all objects. Its main event handler is __________.
Which form element would you use to create a scriptable button other than a reset or submit button?
The term __________________ refers to any application, such as a Web Browser or help engine, that renders HTML for display to users.
If a function is not a built in function, then it is a _________________ function.
The __________ is the building block of all custom objects.
A __________ is an organized block of code that handles actions generated by user events.
What would the following JavaScript code return?
"SANDY COBB".charAt(3);
The _______ indicator delineates a comment on a single line of script.
The _____ indicator is used for multiple line comments.
A (an) _________ is a programming function that models the characteristic of abstract or real "objects" using classes.
The key difference between the While Statement and the Do While Statement is ____________
A server named www.thisserver.com can set a cookie for the domain www.thatserver.com.
Which of the following is the correct way to test for the presence of a cookie?
JavaScript is a strong object-oriented language that relies, for a large part of its functionality, on objects and their attendant methods and properties.
To instantiate and then populate the properties of each new instance with actual data, you must _________ _________.
Which of the following, if any, shows the appropriate syntax for accessing a function stored in a frame file?
Tanja wants to target the “parent” frame of all frames in her Web site. In HTML, this parent frame is called “_top”.
What is this parent called if Tanja decided to use JavaScript in her Web page?
Ling wants to add a button to her Web page that will transport the user to another Web page. She does not to use a hyperlink, so she includes the following JavaScript:
The code does not function as Ling intended.
Which of the following choices shows how she should rewrite the script to make it function correctly?
VBScript and _____________ are scripting languages that are similar in purpose. Both extend the capabilities of static Web pages.
What is a constructor function in JavaScript?
Wilhelm is creating a Web page using JavaScript. He wants to set a cookie with each site visitor so that his Web server can recognize visitors on subsequent visits for one month.
Which one of the following choices contains the elements required in this cookie?
The main event handler associated with the checkbox object is _________.
The ________ method request user input through a text field within a dialog box.
What is the JavaScript term for a string value that represents the URL of the document from which the current document was accessed?
Which is the best definition of a JavaScript instance?
Which special character in JavaScript is interpreted as a new line?
When using custom JavaScript objects, why should you use arrays of instantiate each object individually?