C779 PRACTICE TEST C QUESTIONS & ANSWERS
Consider the following portion of HTML code for creating a table:
<table border="1">
<tr>
<th>Price</th>
<th>Quantity</th>
</tr>
<tr>
<td>13.95</td>
<td>72</td>
</tr>
</table>
Also consider the corresponding CSS document code:
table, td, th
{
border:1px solid gray;
}
td, th
{
padding:6px;
border-spacing:4px;
}
Which statement correctly describes the resulting table? - Answers - Each cell in the
table will be separated from the other cells by 2 pixels more than the default.
Your Internet access has been interrupted and your employees no longer have access
to the remote applications they need to complete their work. This situation reflects the
fact that your employees are using: - Answers - cloud service providers.
Which statement accurately explains case sensitivity in HTML documents? - Answers -
All tags except <!DOCTYPE> should be typed in lowercase letters.
Consider the following HTML code from a page that resides on a Web server:
<a href="../ucorp.html"> uCorp </a>
According to this code, where does the file named ucorp.html reside on the Web
server? - Answers - In a directory one level above the current page
Which of these HTML elements is considered a text-level element? - Answers - <br>
Which line of HTML code uses the correct syntax to define an image map's regions? -
Answers - <area shape="rect" coords="0,0,75,75" href="home.htm" alt="home"/>
Consider the following portion of HTML code for creating a table:
<table border="1">
<tr>
<th>Price</th>
<th>Quantity</th>
</tr>
<tr>
<td>13.95</td>
<td>72</td>
</tr>
</table>
Also consider the corresponding CSS document code:
table, td, th
{
border:1px solid gray;
}
td, th
{
padding:6px;
border-spacing:4px;
}
Which statement correctly describes the resulting table? - Answers - Each cell in the
table will be separated from the other cells by 2 pixels more than the default.
Your Internet access has been interrupted and your employees no longer have access
to the remote applications they need to complete their work. This situation reflects the
fact that your employees are using: - Answers - cloud service providers.
Which statement accurately explains case sensitivity in HTML documents? - Answers -
All tags except <!DOCTYPE> should be typed in lowercase letters.
Consider the following HTML code from a page that resides on a Web server:
<a href="../ucorp.html"> uCorp </a>
According to this code, where does the file named ucorp.html reside on the Web
server? - Answers - In a directory one level above the current page
Which of these HTML elements is considered a text-level element? - Answers - <br>
Which line of HTML code uses the correct syntax to define an image map's regions? -
Answers - <area shape="rect" coords="0,0,75,75" href="home.htm" alt="home"/>