Answers| Guaranteed to Pass
What is an IP address? ✔Correct Answer--Unique address for machine on internet
What is the relationship between an IP address and a domain name? ✔Correct Answer--Domain
names are used to identify one or more IP addresses; translation process is done by DNS
What is a web server? ✔Correct Answer--Computer program that delivers web pages
What is HTTP? ✔Correct Answer--Request/response protocol between clients and servers
(Hypertext Transfer Protocol)
What are the two main parts of an HTML document? ✔Correct Answer--Head and body
Given the URL http://www.notrealsite123.org:8100/
Identify the following:
Protocol:
Domain Name:
Port Number: ✔Correct Answer--Protocol: http
Domain Name: notrealsite123.org
Port Number: 8100
Which HTML tag can be used to define a paragraph? ✔Correct Answer--<p></p>
Which HTML tag can be used to define a line break? ✔Correct Answer--<br />
Name some of the attributes associated with the <img> tag ✔Correct Answer--src
width
height
alt
Define the HTML associated with an ordered list of your three favorite desserts ✔Correct Answer--
<ol>
<li>dessert 1</li>
<li>dessert 2</li>
<li>dessert 3</li>
</ol>
Define the HTML associated with a link to the University site ✔Correct Answer--<a
href="http://www.umd.edu">University of Maryland</a>
Define an HTML table that has two rows and three columns. The data in the table are names of your
favorite restaurants. Use a border value of 1 for the table ✔Correct Answer--<table border="1">
<caption>Favorite Restaurants</caption>
<tr> <th></th> <th>Restaurant 1</th> <th>Restaurant 2</th></tr>
<tr> <td></td> <td>Restaurant Name 1</td> <td>Restaurant Name 2</td></tr>