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.
1/5
, 5. Consider the following portion of HTML code for creating a table:
2/5