FINAL OBJECTIVE ASSESSMENT
1. An end user has just submitted data in a Web form. This form was
processed using a Java servlet. Which of the following is responsible for
executing the CGI application used?: The Web server
2. Many Web designers try to control the way that Web page elements will
render on the screen. A designer who uses a fixed-width layout:: assigns
specific pixel widths to page elements using HTML5 structural elements.
3. If a Web page author wants her users to select only one option among
several specified on a form, which input type should she specify?: Radio
buttons
4. 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;
}
Which statement correctly describes the resulting table?: Each cell will have
6 pixels more than the default of space between the content and the cell border.
5. Consider the following portion of HTML code for creating a table:
1/5
, WGU C779 WEB DEVELOPMENT FOUNDATIONS 2025/2026
FINAL OBJECTIVE ASSESSMENT
<table border="1">
<tr>
<th>Price</th>
<th>Quantity</th>
</tr>
<tr>
<td>13.95</td>
<td class="center">72</td>
</tr>
</table>
Also consider the corresponding CSS document code:
table, td, th
{
border:1px solid gray;
}
td.center
{
text-align:center;
}
Which statement accurately describes the position of the number "72" in a
table cell?: The number will be aligned horizontally to the center of the cell.
6. How many colors are specified in the browser-safe color palette?: 216
7. Your Web development team is creating an e-commerce site for a new
product. The marketing team's goal is to develop markets worldwide. During
site functionality testing, your team will use several browsers, including
Microsoft Internet Explorer, Mozilla (on Windows, Linux and Macintosh),
Chrome (on Windows, Linux and Macintosh), and Lynx. What is the purpose
of using multiple browsers for site functionality testing?: To make the site
accessible to all potential users
8. You want to enhance your Web site visitors' experience. To do this, you
need to know the type of browser that each visitor to your Web site is using.
You can then automatically direct each user to the proper page for that
browser. How can you accomplish this most efficiently?: Use a client-side or
server-side script to detect the browser used.
2/5