Thursday Morning Review Questions
Let us see how much you have learned by going over these review questions.
- Which is not a logical tag?
- <ADDRESS>
- <CITE>
- <I>
- <KBD>
- <VAR>
- Which statement is true about the <MARQUEE> tag?
- Is
only supported by Microsoft IE.
- Is
only supported by Netscape Navigator.
- Is
supported by both Netscape Navigator and Microsoft IE.
- Uses NAME as an attribute.
- None of the above.
- What does status code 200 indicate?
- Document not found.
- Redirection.
- Server
side error.
- Success, document follows.
- Trick
question, there is no status code 200.
- What does status code 404 indicate?
- Document not found.
- Redirection.
- Server
side error.
- Success, document follows.
- Trick
question, there is no status code 404.
- How is an ampersand (&) represented in HTML?
- &
- &
- <&>
-  
- <AMP>
- Which tag is used to accommodate frameless browsers?
- <AMP>
- <BODY>
- <FRAME>
- <FRAMESET>
- <NOFRAMES>
- Which TARGET value is not one of the special values?
- _BLANK
- _FRAME
- _PARENT
- _SELF
- _TOP
- Which <IMG> attribute denotes a client-side imagemap?
- ALT
- IMG
- ISMAP
- MAP
- USEMAP
- Which is the default HTTP METHOD ?
- GET
- HEAD
- INPUT
- POST
- PUT
- Which statement is true?
- All
images in HTML are rectangular.
- SIZE is
an attribute of the "IMG" tag.
- STYLE
is an attribute of the "IMG" tag.
- STYLE
is an attribute of the "LINK" tag.
- STYLE
is an attribute of the "META" tag.
- Which image format supports black and white, interlacing, transparency,
animation, and lossless image compression?
- GIF
- JPEG
- x-bitmaps
- PNG
- None of
the above
- What section of an HTML document contains information about the
document?
- The
BODY section.
- The
FOOTER section.
- The
FORM section.
- The
HEAD section.
- The
META section.
- BORDER, CELLPADDING, CELLSPACING, and WIDTH are attributes of which HTML
tag?
- <TABLE>
- <TD>
- <TH>
- <TR>
- <UL>
- Which is the HTML tag that displays preformatted text in fixed width
font?
- <BLOCKQUOTE>
- <CODE>
- <P>
- <PRE>
- <VAR>
- Which is not valid HTML?
- <BODY BGCOLOR="#808080">
- >TABLE LINK="#CCFFAA"<
- <TD
BGCOLOR="#808080">
- <TD
BGCOLOR="#CCFFAA">
- <TD></TD>
- Which HTML code fragment would set the background color of an individual
table cell to red?
- <TD
BACKGROUND="#FF0000">
- <TD
BGCOLOR="#FF0000">
- <TD
BGCOLOR="#FFFF00">
- <TD
LINK="#FF0000">
- <TR
BGCOLOR="#FFFF00">
- Which is true regarding Cascading Style Sheets?
- Style
rules may be placed in an external file which can then be linked or loaded
into a Web page.
- Style
sheets can specify colors and fonts.
- Style
sheets can specify line spacing and margin widths.
- Style
sheets describe how documents are presented.
- All of
the above.
- Given the HTML code fragment below, how will "happy" be
rendered?
<HEAD>
<STYLE TYPE="text/css">
#abc {
color: blue; font-style:
italic}
</STYLE>
</HEAD>
<BODY>
<P ID="abc" STYLE="color: red">happy</p>
</BODY>
- In
blue, italicized.
- In
blue, regular font.
- In red,
italicized.
- In red,
regular font.
- None of
the above.
- Given the HTML code fragment below, how will "happy" be
rendered?
<HEAD>
<STYLE TYPE="text/css">
.cool
{font-style: italic; text-transform: uppercase; font-size: 12pt}
</STYLE>
</HEAD>
<BODY>
<P><STRONG
CLASS="cool">happy</STRONG></P>
</BODY>
- HAPPY
- happy
- HAPPY
- happy
- None of
the above.
It wasn't that hard.