LESSON 3 QUIZ
     DIRECTIONS: This quiz will score itself as you go. After correctly completing all the questions, click "Done", and you will be taken to a job well-done page. You may only answer each question one time, where it must be correct, otherwise you will have to click "Restart Quiz" below to re-take the quiz. You may cancel this quiz anytime by clicking "Exit this Quiz", however, your current progress will be erased from memory.

     For the best interest in your learning experience, you should correctly complete the quiz before continuing with the tutorial. If you feel you've answered a question correctly and was scored incorrectly, review the material in the lesson corresponding to the quiz you are taking. Most of the quiz questions are written in the order the material was presented in each lesson.


1. How does this lesson define objects?

text, images, and sound
text and sound
images and sound
text and images

2. What is a hyperlink?

code used to communicate with objects and webpages
code used to communicate with objects only
code used to communicate with webpages only
code used to neither communicate with webpages and objects

3. What is the format for a link (in respect to both objects or webpages?

<a href="webpages">Text/Images here</a>
<a href="objects">Text/Images here</a>
<a href="webpages/objects">Text/Images here</a>
<a href="images">Text/Images here</a>

4. What attribute/value combination will open a webpage and/or object in a new window (and is the proper way of doing so)?

target="_new"
target="_blank"
target="_window"
target="_newwindow"

5. What is a relative link?

a cousin to an absolute link
a link related to another link
specifying the full path to a webpage or object using HTML
specifying a shortcut to a webpage or object using HTML

6. Of the examples below, which is a relative link?

<a href="index.htm">Homepage</a>
<a href="http://www.netonwheels.net">My Website</a>
<a href="www.netonwheels.net">My Website</a>
<a href="file://C:|My Documents/Untitled.doc">My Website</a>

7. What is an absolute link?

a cousin to an absolute link
a link related to another link
specifying the full path to a webpage or object using HTML
specifying a shortcut to a webpage or object using HTML

8. Of the examples below, which is an absolute link?

<a href="C:|My Documents/Untitled.doc">My Website</a>
<a href="file://www.netonwheels.net">My Website</a>
<a href="www.netonwheels.net">My Website</a>
<a href="http://www.netonwheels.net">My Website</a>

9. Which of the following is the correct way of linking to a website?

<a href="www.netonwheels.net">Link</a>
<a href="http://www.netonwheels.net">Link</a>
<a href="file://www.netonwheels.net">Link</a>
<a href="netonwheels.net">Link</a>

10. Are you allowed to use "\" instead of "/"?

no - it is not proper web designing
no - "/" is good enough
yes - but you must use either "/" or "\"
yes - but you must use both "/" or "\"