You are on page 1of 13

10/24/2015 Tags!

 | Coursera

Tags!


26/29 questions correct

Quiz passed!

Continue Course (/learn/html/lecture/d6Pha/03­01­accessibility)

Back to Week 2 (/learn/html/home/week/2)

 1. 

The DOM is

an acronym for Direct Object Manipulation

a standard for creating well­structured documents

Well done! 

a standard for transmitting documents across the Internet

 2. 

Every well­formed HTML document should include:
Help Center

doctype, head, body

Well done! 
Correct.

doctype, header, body
https://www.coursera.org/learn/html/exam/a0yq0/tags 1/13
10/24/2015 Tags! | Coursera

header, nav, footer

alt text

 3. 

Which of the following are valid tags for HTML5 headings?

<h5>..</h5>

Well done! 

<heading>..</heading>

<header>..</header>

<h9>..</h9>

 4. 

Which tag represents a line break?

<lb>

<nl>

<break>

<br>

Well done! 

 5. 

Using the header and footer tags can improve the search engine
optimization for your page.

https://www.coursera.org/learn/html/exam/a0yq0/tags 2/13
10/24/2015 Tags! | Coursera

True

Well done! 

False

 6. 

What is wrong with the following code?

<a href = "http://www.umich.edu"></a>

This code is semantically and syntactically correct.

Sorry, that's incorrect. 

This link doesn't provide any way to click on the link.

The anchor link is self­closing. Remove the </a> and the code
will work.

The alt text attribute is missing from the tag

 7. 

Which of the following is not a self­closing tag?

<html>

Well done! 
See Chapter 9.

<br>

<meta>

https://www.coursera.org/learn/html/exam/a0yq0/tags 3/13
10/24/2015 Tags! | Coursera

<DOCTYPE>

 8. 

All of the content you wish to appear on the screen should be in which
tag?

<content>

<html>

<main>

<body>

Well done! 

 9. 

Which tag is used to create a link?

<anchor>

<a>

Well done! 

<hyper>

<link>


10. 
What is the proper way to include an extra space (non­breaking, so not a
new line) in an HTML document?

https://www.coursera.org/learn/html/exam/a0yq0/tags 4/13
10/24/2015 Tags! | Coursera

&nbsp;

Well done! 

Show other acceptable response

 11. 

Which HTML element will number items for you?

<ul>

<dl>

<num>

<ol>

Well done! 

 12. 

The tags to create definitions are:

<dl><dt><dd>

Well done! 

<dl><term><def>

<def><dt><li>

<def><dt><dd>

 13. 

https://www.coursera.org/learn/html/exam/a0yq0/tags 5/13
10/24/2015 Tags! | Coursera

The <meter> tag will work even in the min and max attributes are
missing.

True

Well done! 

False


14. 
The _____________ element can be used as an easy way to highlight
certain content.

<mark>

Well done! 

Show other acceptable response

 15. 

The way to caption an image is to use

caption

alt text within an <img> tag

figcaption

Well done! 


16. 
The ______________ tag allows you to label the contents of an image
element to describe the content. (Only the opening tag is necessary.)

https://www.coursera.org/learn/html/exam/a0yq0/tags 6/13
10/24/2015 Tags! | Coursera

figure

Well done! 

Show other acceptable response

 17. 

Most pages have a ___________________ system for moving from
page to page within a site.

navigation

Well done! 

history

semantic

syntactic

 18. 

Write the proper code to display an image from a local file called
"Bacon.jpg". The alt text should be "My Dog".

<img src="Bacon.jpg" alt="My Dog">

Well done! 

 19. 

Which of the following is a properly formatted link?

<a src = "www.wikipedia.org">wikipedia.org</a>

https://www.coursera.org/learn/html/exam/a0yq0/tags 7/13
10/24/2015 Tags! | Coursera

<a href = "www.wikipedia.org">wikipedia.org</a>

Well done! 

<link href = "www.wikipedia.org">wikipedia.org</a>

<a link = "www.wikipedia.org">wikipedia.org</a>

 20. 

What should target = "_blank" do when included in a link tag?

This is not a valid expression.

Opens the link in a in a tab called "_blank"

Opens the link in a new tab or window

Well done! 


21. 
Some tags require special features to work correctly, e.g. alt, href, src,
etc. These extra pieces of information are called ______________

attribute

Well done! 
(Make sure to add an "s" next time if you can.)

Show other acceptable response

 22. 

Using lists to create a navigation bar may cause

https://www.coursera.org/learn/html/exam/a0yq0/tags 8/13
10/24/2015 Tags! | Coursera

increased search engine optimization (SEO) results

performance issues.

Sorry, that's incorrect. 
Incorrect. Review Chapter 11 to learn more about this topic.

accessibility issues

 23. 

Which of the following is an absolute path?

c://WD4E/index.html

Sorry, that's incorrect. 
Incorrect. See Chapter 11 to review the material

http://www.smiletrain.org/the­problem/

index.html

None of the above.

 24. 

The relative path should include the top­level domain.

True

False

Well done! 

 25. 

https://www.coursera.org/learn/html/exam/a0yq0/tags 9/13
10/24/2015 Tags! | Coursera

.mp3 files load faster than .wav files

True

Well done! 

False


26. 
When you include multimedia elements it is a good idea to include the
___________________ attribute to give page viewers the ability to play,
pause, and stop the music or video.

controls

Well done! 


27. 
What is the correct tag for playing a video? (Opening tag only, make sure
to include the brackets.)

<video>

Well done! 

 28. 

Which code properly creates the nested list structure shown here?

https://www.coursera.org/learn/html/exam/a0yq0/tags 10/13
10/24/2015 Tags! | Coursera

Notice that the blueberries and bananas are part of the fruit component.

<ul>   
    <li>Vegetables</li> 
    <li>Fruit
       <ol>       
          <li>Blueberries</li>
    <li>Bananas</li>
       </ol>
    </li>
</ul>

<ul>   
    <li>Vegetables</li> 
    <li>Fruit>/li>
    <ol>       
       <li>Blueberries</li>
       <li>Bananas</li>
    </ol>
</ul>

<ol>   
    <li>Vegetables</li> 
    <li>Fruit
       <ul>       
          <li>Blueberries</li>
    <li>Bananas</li>
       </ul>
    </li>
</ol>

https://www.coursera.org/learn/html/exam/a0yq0/tags 11/13
10/24/2015 Tags! | Coursera

Well done! 

<ol>   
    <li>Vegetables</li> 
    <li>Fruit>/li>
    <ul>       
       <li>Blueberries</li>
       <li>Bananas</li>
    </ul>
</ol>

 29. 

Which code will properly insert headings along each row?

Well done! 

https://www.coursera.org/learn/html/exam/a0yq0/tags 12/13
10/24/2015 Tags! | Coursera

  

(https://accounts.coursera.org/i/zendesk/courserahelp?return_to=https://learner.coursera.help/hc)

https://www.coursera.org/learn/html/exam/a0yq0/tags 13/13

You might also like