3 Months Free Update
3 Months Free Update
3 Months Free Update
Which of the following is the JavaScript string object special character to insert a new line?
The __________ method tests for the presence and position of a certain character.
_________ refers to the fact that some objects cannot be used or referenced without referring to the parent object.
The name=value pair is the only information required to generate a cookie. All other parameters are optional.
The button object is the simplest of all objects. Its main event handler is __________.
Once the constructor is defined, you need to create new instances of the object. This process is called instantiation.
alinkColor, anchors, bgColor, cookie and fgColor are all properties of the _______________ object.
A (an) _________ is a programming function that models the characteristic of abstract or real "objects" using classes.
Frames are arranged in a parent child hierarchy. With this in mind, in JavaScript, which keyword targets the parent of all parents in a frameset?
A (an) __________ is a value or expression containing data or code that is passed on to a function or procedure.
Consider the various JavaScript methods, such as alert(), prompt(), and confirm(). These methods are methods of which object?
Which one of the following choices best describes how cookies are stored on a user’s hard drive?
Can the practice of calling JavaScript functions from framesets be extended to calling them from different browser windows?
Which property of the navigator object identifies the operating system for which the browser was compiled?
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?
An Instance is the term for the real-time objects that are generated from the empty constructor template?
When you want to evaluate multiple objects in an array, you need a __________ instead of a ___________.
Mark must determine the number of elements in his user-input form.
Which property of the form object will return this number?
Which one of the following is an action that can be performed by an object?
JavaScript is case sensitive, and the keyword "function" must be all lowercase.
The following are both advantages of creating user defined objects in JavaScript:
1. You can create sophisticated solutions with a minimum of coding.
2. You can represent programming constructs as objects (which allows you to code efficient schemes for evaluating forms or creating client-side databases).
VBScript and _____________ are scripting languages that are similar in purpose. Both extend the capabilities of static Web pages.
Raul wants to display the current data and time in the Web page he just created.
Which JavaScript object can he use to access this information and display it on a Web page?
Consider the following HTML:
Which method of the String object is used to write the JavaScript equivalent to this HTML?
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?
Which property of the location object refers to the hostname:port solution of the URL?
Consider the following HTML:
<|>|>
Which method of the String object is used to write the JavaScript equivalent to this HTML?
You must declare variables that will become object references to a newly instantiated objects to _____________________
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?
The window object is subordinate to the document object in the JavaScript hierarchy.
Consider the following code:
<script>
var x = 0;
for (i=0; i<5; i++) {
x += i;
}
alert("1+2+3+4 = " +x);
</script>
How many times will the program loop, and what will be the final value of x?
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>
Once the constructor is defined, you need to create new instances of the object. This process is called ___________.
___________ is JavaScript's server-side solution. It enables you to connect Web pages to databases, as well as enable server-side image maps and save client state so that the computer will remember where the client is in a multi-page preocess.
document.cookie = "name = value"; or document.cookie = "name = value;expi
es = date"; are both proper syntax for assigning cookies in JavaScript.
In JavaScript, the operator =, is an assignment operator. It will __________________
A _______ is the specific color, width or height that belongs to the property of an object.
_______ 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 server named www.thisserver.com can set a cookie for the domain www.thatserver.com.
JavaScript will support direct database access even if LiveWire is not installed on the server.
A ____________ is an input object in the shape of a small square that can be selected, or checked on or off.
Which of the following are all the types of expressions allowed in JavaScript?
Function blocks begin with the keyword __________ followed by the function name.
What will the following JavaScript code do when it runs?
var content="";
content += "<HTML><HEAD><BASE TARGET='_blank'></HEAD>";
content += "<BODY BGCOLOR='#CC9966' TEXT='#330000'>";
content += "Related Sites".big().fontcolor("blue") + "<P>\n";
content += "These sites are of interest to ";
content += "Afrikunda".italics();
content += " patrons.<P>\n";
JavaScript and _____________ are scripting languages that are similar in purpose. Both extend the capabilities of static Web pages.
_______ represent various attributes of an object, such as height, color, font size, sentence length, and so forth.
JavaScript is an event-driven programming language. Events trigger _________.
Ann inadvertently deleted her cookies.txt file.
How will this affect her browsing experience?
Which property of the form object represents the identity of the form as defined in the
Which property of the location object specifies the full URL of a file or site?