• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/20

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

20 Cards in this Set

  • Front
  • Back
What does XHTML stand for?

A. EXtreme HyperText Markup Language

B. EXtra Hyperlinks and Text Markup Language

C. EXtensible HyperText Markup Language

D. EXtensible HyperText Marking Language
C. EXtensible HyperText Markup Language
XHTML is a Web standard


A. True
B. False
A. True
XML and HTML will be replaced by XHTML


A. True
B. False
B. False
What is correct XHTML for a horizontal line?

A. <hr>

B. <hr />
B. <hr />
What is the correct XHTML for a paragraph?

A. <P></P>

B. </p><p>

C. <p></p>

D. <P></p>
C. <p></p>
What is correct XHTML for a line break?

A. <br />

B. <break/>

C. <br>
A. <br />
What is the correct XHTML for an attribute and its value?

A. WIDTH=80

B. width="80"

C. WIDTH="80"

D. width=80
B. width="80"
All elements in XHTML must be closed


A. True
B. False
A. True
Is this correct XHTML?

<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
<li>Milk</li>
</ul>

A. No

B. Yes
A. No
The DOCTYPE declaration has no closing tag


A. True
B. False
A. True
Which elements are mandatory in an XHTML document?

A. doctype, html, head, and body

B. doctype, html and body

C. doctype, html, head, body, and title
C. doctype, html, head, body, and title
XHTML documents must be "well-formed"
CorrectIncorrect
Incorrect

A. True
B. False
A. True
What XHTML code is "well-formed"?

A. <p>A <b><i>short</i></b> paragraph</p>

B. <p>A <b><i>short</b></i> paragraph</p>

C. <p>A <b><i>short</i></b> paragraph
A. <p>A <b><i>short</i></b> paragraph</p>
Which of the following is the right use of the lang attribute?

A. <div language="en">Hello World!</div>

B. <div lang="en" xml:lang="en">Hello World!</div>

C. <div xml:language="en">Hello World!</div>
B. <div lang="en" xml:lang="en">Hello World!</div>
Which attribute replaces the name attribute for the following elements: a, applet, frame, iframe, img, and map?

A. The src attribute

B. The class attribute

C. The id attribute
C. The id attribute
Is attribute minimization allowed in XHTML?

A. Yes

B. No
B. No
Do all XHTML documents require a doctype?

A. Yes

B. No
A. Yes
What are the different DTDs in XHTML?

A. Strict, Transitional, Loose

B. Strict, Transitional, Frameset

C. Strict, Transitional, Loose, Frameset
B. Strict, Transitional, Frameset
What is the most common XHTML DTD?

A. Loose

B. Frameset

C. Normal

D. Transitional
D. Transitional
All XHTML tags and attributes must be in lower case


A. True
B. False
A. True