Time Remaining:

Progressbar timer

HTML Basics: Final Exam

Push button

Question 1 (5 points): Which of the following protocols is used for email messages?
Choice 1 FTP
Choice 2 NNTP
Choice 3 HTTP
Choice 4 SMTP
Question 2 (5 points): Which of the following identifies the specific location of every computer on the Internet?
Choice 1 IP Address
Choice 2 Server
Choice 3 Protocol
Choice 4 HTML
Question 3 (10 points): Which of the following represents the correct set of the Core 8 HTML tags?
Choice 1 <HTML><HEAD><TITLE></TITLE></HEAD><BODY></BODY></HTML>
Choice 2 <HTML><TITLE><HEAD></HEAD></TITLE><BODY></BODY></HTML>
Choice 3 <HTML><HEAD><TITLE></TITLE><BODY></BODY></HEAD></HTML>
Choice 4 <HTML><HEAD><TITLE><BODY></BODY></TITLE></HEAD></HTML>
Question 4 (10 points): Which of the following is the correct set of tags for a bulleted list with two bullets?
Choice 1 <LI><UL><UL></LI>
Choice 2 <OL><LI><LI></OL>
Choice 3 <UL><LI><LI></UL>
Choice 4 <LI><OL><OL></LI>
Question 5 (10 points): Which of the following is the correct set of tags for a table?
Choice 1 <TABLE><TR><TD><TR><TD><TR><TD><TR><TD></TABLE>
Choice 2 <TABLE><TR><TD><TD><TR><TD><TD></TABLE>
Choice 3 <TABLE><TD><TR><TD><TR><TD><TR><TD><TR></TABLE>
Choice 4 <TABLE><TD><TR><TR><TD><TR><TR></TABLE>
Question 6 (10 points): Which of the following HTML code snippets correctly calls an external CSS file named newspaper.css?
Choice 1 <link rel="newspaper.css" href="URL" type="text/css">
Choice 2 <link rel="http" href="newspaper.css" type="text/css">
Choice 3 <link rel="newspaper.css" href="URL" type="text/css">
Choice 4 <link rel="stylesheet" href="newspaper.css" type="text/css">
Question 7 (10 points): Which of the following is the correct coding for an external hyperlink where users click on the phrase Boston Globe, and their browser loads http://www.boston.com into their browser window?
Choice 1 <anchor href="http://www.boston.com">Boston Globe</a>
Choice 2 <anchor "href=http://www.boston.com">Boston Globe</a>
Choice 3 <a href="http://www.boston.com">Boston Globe</a>
Choice 4 <a "href=http://www.boston.com">Boston Globe</a>
Question 8 (10 points): Which of the following HTML correctly identifies the paragraph as an internal destination anchor named population?
Choice 1 <A name="population"></A>The population of China is...
Choice 2 <A "name=population"></A>The population of China is...
Choice 3 <A href name="population"></A>The population of China is...
Choice 4 <A href "name=population"></A>The population of China is...
Question 9 (10 points): What is the correct and complete URL for a file named button.gif stored in a folder called buttons within the main directory for www.pubsnet.com?

Choice 1 /buttons/button.gif
Choice 2 http://www.grantcom.us/buttons/button.gif
Choice 3 http:\\www.pubsnet.com\buttons\button.gif
Choice 4 \buttons\button.gif

Question 10 (20 points): What is the correct set of tags that define a table structure similar to the following (note that the width is the entire width of the browser window, and the border thickness is 3 pixels):

cell

cell

cell

cell

 

Choice 1 <TABLE border="3" width="100"> <TR><TD><TD><TR><TD><TD></TABLE>
Choice 2 <TABLE><BORDER="3"><WIDTH="100%"><TR><TD><TD><TR><TD><TD></TABLE>
Choice 3 <TABLE><TR border="3" width="100%"><TD><TD><TR><TD><TD></TABLE>
Choice 4 <TABLE border="3" width="100%"><TR><TD><TD><TR><TD><TD></TABLE>