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