Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
HTML and JavaScript BASICS
Quiz 9: Using Javascript With Frames
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
If you want to change the name of the file to be displayed in the lower frame to lower2.html,the correct code would be ____.
Question 22
Multiple Choice
To add an onClick event to an input tag,the correct code would be ____. < ____="button" value="Prev Image" OnClick="parent.UpperFrame.prevImage() ">
Question 23
Multiple Choice
Machine language commands look like ____.
Question 24
Multiple Choice
An example of ____ language is: PUSH BP MOV BP,SP DEC SP DEC SP
Question 25
Multiple Choice
You might find it easier to place many JavaScript function definitions in the top-level frameset file,and then every HTML document can easily access these functions by using the JavaScript ____ object.
Question 26
Multiple Choice
In the code below,the table contains ____. < table> < tr>< td>1: LIONS.GIF< /td>< /tr> < tr>< td>2: TIGERS.GIF< /td>< /tr> < tr>< td>3: BEARS.GIF< /td>< /tr> < tr>< td>4: OHMY.GIF< /td>< /tr> < /table>
Question 27
Multiple Choice
Any JavaScript function can be called from any ____.
Question 28
Multiple Choice
Case 9-1 Sid is creating a Web site featuring a slide show of his trip to Italy and plans to use both an array and a function to start the slide show automatically. -First,Sid defines a four-element image array to contain the four graphics that make up the slide show.The array elements will be numbered ____.
Question 29
Multiple Choice
If an HTML document wants to access its parent frameset,it can do so by using the parent object.If that page needs to access the parent frameset of its own parent,it can use two instances of the JavaScript ____ object.
Question 30
Multiple Choice
To add an onLoad event to the < body> tag of your HTML file,the correct code would be ____.
Question 31
Multiple Choice
Case 9-1 Sid is creating a Web site featuring a slide show of his trip to Italy and plans to use both an array and a function to start the slide show automatically. -To initialize the image array,Sid uses the ____() function.