complete solutions A+ rated
You have included on your Web page a graphic image file that conforms to a relatively new standard.
This graphic format is capable of supporting compression, animation and transparency. It is also an open
standard. However, this image file format is not supported in older browsers. Which image file format
are you using? - correct answer ✔✔PNG
You are writing HTML code for your Web page. You use hexadecimal notation to specify the RGB values
you want to use on the page. What aspect of your Web page are you specifying with these values? -
correct answer ✔✔Colors
Nancy is formatting a simple Web page. Her supervisor has directed her to create headings before the
second and fourth paragraphs. Which type of HTML elements should Nancy use to accomplish this most
efficiently? - correct answer ✔✔Paragraph-level elements
As you develop Web sites for mobile devices, you should: - correct answer ✔✔include only content that
is absolutely necessary for the viewer.
You are embedding audio in your Web page and want to specify that the audio file should play over and
over again without stopping. Which attribute is needed to accomplish this? - correct answer
✔✔loop="loop"
What is the basic element of a raw text string sent from a Web form to a Web server's CGI script? -
correct answer ✔✔A name=value pair
Which statement accurately explains case sensitivity in HTML documents? - correct answer ✔✔All tags
except <!DOCTYPE> should be typed in lowercase letters.
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: - correct answer ✔✔their Web browsers as application delivery platforms.
, Your Web team maintains a Web site of more than 3,500 Web pages. Which of the following can help
your end-users find the information they seek? - correct answer ✔✔An internal search engine
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:2px;
}