Name:     ID: 
 
    Email: 

Web-Page Design-Final Examination-Lessons 7-12

Multiple Choice
Identify the letter of the choice that best completes the statement or answers the question.
 

 1. 

The information that the user entered in the form is known as the ____.
a.
data
c.
submission
b.
results
d.
reference
 

 2. 

A Web page with a form must be ____ to operate correctly.
a.
processed
c.
published
b.
previewed
d.
sized correctly
 

 3. 

A text block is ____ character(s) in height.
a.
one
c.
three
b.
two
d.
a variable number of
 

 4. 

The properties of a text area are similar to the properties for a(n) ____.
a.
option button
c.
menu
b.
text box
d.
check box
 

 5. 

The ____ is used if an error dialog box is displayed to inform the user that the entry is incorrect.
a.
label
c.
field name
b.
data label
d.
display name
 

 6. 

____ enable the user to select more than one item from a group of items.
a.
Radio buttons
c.
Check boxes
b.
Option buttons
d.
All of the above
 

 7. 

Every option button in a group must have the same ____.
a.
group name
c.
value
b.
initial state
d.
all of the above
 

 8. 

When you have a long list of options, use a ____ to save space on your Web page.
a.
text area
c.
drop-down box
b.
smaller font
d.
check boxes
 

 9. 

To make additional selections from a drop-down box, the user must hold the ____ key and click on the additional items.
a.
Shift
c.
Tab
b.
Alt
d.
Ctrl
 

 10. 

The first option in a drop-down box is frequently ____.
a.
the instructions
c.
open so users can key a specific option
b.
blank
d.
all of the above
 

 11. 

When a user selects an option button, ____.
a.
a dialog box asks users to deselect other options
b.
the other choices are automatically deselected
c.
the user must deselect other options
d.
the selected option is highlighted with a blue border
 

 12. 

Form elements include ____.
a.
option buttons
c.
text areas
b.
drop-down boxes
d.
all of the above
 

 13. 

What is the purpose of the <META> tag?
a.
describe information about the HTML document
b.
define the script area
c.
define content between the head and body
d.
There is no <META> tag.
 

 14. 

What is source code?
a.
plain text HTML code that makes up a Web page
b.
precompiled code used on Web pages
c.
text that is inserted into a Web page
d.
none of the above
 

 15. 

What is the HTML special character for a blank space?
a.
&nbsp;
c.
&copy;
b.
&amp;
d.
&quot;
 

 16. 

Why is it important to understand what the WYSIWYG programs are doing behind the scenes for you?
a.
to aid in understanding all of he menu options
b.
to aid in fine-tuning the HTML that they create
c.
to aid in setting properties through the program
d.
all of the above
 

 17. 

Which is an external link?
a.
<A HREF= “page.htm”>Page</A>
b.
<A HREF= “../page.htm”>Page</A>
c.
<A HREF= “/page.htm”>Page</A>
d.
<A HREF= “http://www.yahoo.com”>Yahoo</A>
 

 18. 

When writing relative links, what does the shortcut ../ indicate?
a.
begin at the root
c.
go up one folder level
b.
go down one folder level
d.
none of the above
 

 19. 

Which demonstrates the proper way to insert an image into a Web page?
a.
<IMG = “baby.gif”>
c.
<IMG HREF= “baby.gif”>
b.
<IMG SRC= “baby.gif”>
d.
<A HREF= “baby.gif”>
 

 20. 

What is the purpose of the ALT attribute of the image tag (<IMG>)?
a.
to specify text that will appear if the user has images turned off
b.
to specify text that will be read if a screen reader is being used
c.
to specify text that will appear if the image does not download properly
d.
all of the above
 

 21. 

A thumbnail image is ____.
a.
an image used when another is not available
b.
one that is used for links
c.
a smaller image representation of a larger image
d.
one whose border is set to zero
 

 22. 

Which attribute of the image tag will prevent a blue border from showing up on an image that is used as a link?
a.
BORDER = “None”
c.
BLUE = “None”
b.
BORDER = “0”
d.
BLUE = “0”
 

 23. 

Which is a properly coded link that is relative to another file of the Web site?
a.
<A HREF= “http://www.site.com/page.htm”>Link</A>
b.
<A HREF=”../../../page.htm”>Link</A>
c.
<A HREF= “http://www.yahoo.com/page.htm”>Link</A>
d.
<A HREF= “#page.htm”>Link</A>
 

 24. 

Which is the proper way to code a link that uses the FTP protocol?
a.
<A HREF= “http://ftp.somesite.com”>Some Site</A>
b.
<A HREF= “ftp://ftp.somesite.com”>Some Site</A>
c.
<A HREF= “ftp.somesite.com”>Some Site</A>
d.
<A FTP= “http://ftp.somesite.com”>Some Site</A>
 

 25. 

What is the proper way to code a link that will allow a user to send e-mail?
a.
<A HREF= “mailto.com”>Send Me Mail</A>
b.
<A HREF= “someone@somewhere.com”>Send Me Mail</A>
c.
<A HREF= “mailto:someone@somewhere.com”>Send Me Mail</A>
d.
<A HREF= “pop:someone@somewhere.com”>Send Me Mail</A>
 

 26. 

Which is the best way to insert an image on a Web page?
a.
<IMG SRC= “baby.gif”>
b.
<IMG SRC= “baby.gif” ALT= “baby picture”>
c.
<IMG SRC= “baby.gif” ALT= “baby picture” HEIGHT= “100”>
d.
<IMG SRC= “baby.gif” ALT= “baby picture” HEIGHT= “100” WIDTH= “200”>
 

 27. 

In tables, the area created by the intersection of a row and a column is known as a ____.
a.
value
c.
cell
b.
placeholder
d.
formula
 

 28. 

Which is a container tag?
a.
<TR>
c.
<TABLE>
b.
<TD>
d.
All of the above
 

 29. 

Which tag denotes the contents of a cell?
a.
<TR>
c.
<TABLE>
b.
<TD>
d.
<CELL>
 

 30. 

Which is the proper way to nest tags?
a.
<TR><TD>Some Text</TR></TD>
c.
<TD><TR>Some Text</TD></TR>
b.
<TR></TR>Some Text<TD></TD>
d.
<TR><TD>Some Text</TD></TR>
 

 31. 

In a table, the space between the cell wall and the cell contents is known as the ____.
a.
cell padding
c.
border spacing
b.
cell spacing
d.
border padding
 

 32. 

The TARGET attribute of the <A> tag designates the ____.
a.
file that will be downloaded when the link is clicked
b.
navigation window on a frames page
c.
name of the frame in which the link will be loaded
d.
home page of a frameset
 

 33. 

A frameset with three frames would need how many total Web pages?
a.
two
c.
four
b.
three
d.
five
 

 34. 

The attribute of the table tag that controls the thickness of the wall in between cells is which of the following?
a.
CELLPADDING
c.
BORDER
b.
CELLSPACING
d.
VALIGN
 

 35. 

What does the <TH> tag do?
a.
centers the text within it
c.
centers and bolds the text within it
b.
bolds the text within it
d.
none of the above
 

 36. 

Which would be the best form element to allow a user to choose more than one item from a list of items?
a.
text box
c.
check box
b.
text area
d.
radio button
 

 37. 

Which might be a use of a form on a Web site?
a.
log in to a password-protected area
b.
enter shipping information for a purchase
c.
request a product catalog
d.
all of the above
 

 38. 

In an URL such as the following, what is the name given to the portion of the URL after the question mark: http://search.yahoo.com/bin/search?p=computers?
a.
action Page
c.
querystring
b.
METHOD attribute
d.
search string
 

 39. 

The following line of code generates an option for which form element: <INPUT TYPE="RADIO" NAME="Example" VALUE="FirstValue">Text?
a.
check box
c.
pull-down menu
b.
radio button
d.
all of the above
 

 40. 

The following line of code generates an option for which form element: <INPUT TYPE="CHECKBOX" NAME="Example" VALUE="FirstValue">Text?
a.
check box
c.
pull-down menu
b.
radio button
d.
all of the above
 

 41. 

What do check boxes and radio buttons have in common?
a.
Both allow the user to choose only one answer.
b.
Both allow the user to choose more than one answer.
c.
Both allow the user to choose from a list of preset options.
d.
Both allow the user to type in the text of their choice.
 

 42. 

What is a key difference between radio buttons and check boxes?
a.
Radio buttons allow many choices and check boxes allow only one.
b.
Radio buttons allow one choice and check boxes allow many.
c.
Radio buttons allow user-entered text and check boxes do not.
d.
Check boxes allow user-entered text and radio buttons do not.
 

 43. 

Which attribute of the form tag is used to point to a script file that will process the form data?
a.
METHOD
c.
ACTION
b.
POST
d.
GET
 

 44. 

What is the advantage of using a grid to lay out a Web site?
a.
easily divides a page into rows and columns
b.
spaces the content for easy viewing
c.
helps you to think through the organization of the content
d.
all of the above
 

 45. 

What is the purpose of the home page?
a.
direct the user
c.
highlight information
b.
introduce the contents of the site
d.
all of the above
 

 46. 

When a majority of your users are comfortable with reading from left to right, as with a newspaper or book, what type of layout method should you follow?
a.
print-based layout method
c.
repetition
b.
screen-based layout method
d.
none of the above
 

 47. 

When a person reads a page, where does their eye automatically go first?
a.
top right corner
c.
top left corner
b.
center
d.
bottom left corner
 

 48. 

What should you do when placing content in a layout?
a.
place the more important content in the most important areas
b.
alphabetize all of the content
c.
try to put as much content on a page as possible
d.
all of the above
 

 49. 

In general, where is the second most important location on a Web page?
a.
top banner
c.
left side of the page
b.
center of the page
d.
right side of the page
 

 50. 

What type of content should be on a home page?
a.
links and short descriptions
c.
just graphics
b.
detailed passage of contents
d.
none of the above
 



 
Submit          Reset Help