Reading

Read the paragraph and table and then answer the question.

An HTML document is composed of instruction, or tags, These tags tell Web browsers how to display the content contained in a Web page.

HTML Terminology
starting tag / Tag that tells browser when formatting should start
ending tag / Tag that tells browser when formatting should end
nested tag / Tag enclosed within another set of tags
Empty tag / Starting tag that does not require an ending tag

According to the table, which of the following statements is true?

A. HTML coding always requires a starting tag, but it does not always require an ending tag.

B. You use an empty tag to tell the browser when formatting should end.

C. If you want to be sure your tag will format the text properly, you need to nest the tag.

D. A nested tag has no text between the brackets.

Study the table below and then answer the question.

Table Elements
HTML Table Tag / What Tag Defines / Additional Information
<TABLE> ... </TABLE> / Beginning and end of table area / Using a border attribute will make your table display a border.
<TR> ... </TR> / Beginning and end of row / You can define default attributes for the entire row.
<TH> ...</TH> / Beginning and end of header / Default position is bold and centered.
<TD> ... </TD> / Beginning and end of column / Default position is aligned left.

According to the table, which of the following statements is true?

A. The </TH> tag defines the end of a column.

B. The <TR> tag defines the beginning of a row.

C. The default setting for a column is bold and centered.

D. You use the <TD> ... </TD> tag to display a table border.