<html>
<head>
<title>Take Survey - Page 3</title>
</head>
<body bgcolor=lightyellow>
<h1><center>Take Survey</center></h1>
<h3><center>Using Hidden Fields</center></h3>

<form method=POST name=order action=formProc.cgi>

<br>

<table border=1 width=600 bgcolor=#eeeeee>
<caption align=right>Page 3</caption>
<tr><td>
<b>If an html page has 2 images.  How many HTTP requests are needed<br>
to enable the browser to completely render the page</b><br>
<input type=radio name=httpRequests value=1> One time
<input type=radio name=httpRequests value=2> Two times
<input type=radio name=httpRequests value=3> Three times
<input type=radio name=httpRequests value=4> Four times
<input type=radio name=httpRequests value=0> None
<p>
<tr><td>
<b>Using the HTTP method POST, the QUERY_STRING is empty</b><br>
<input type=radio name=queryStringEmpty value=True>  True
<input type=radio name=queryStringEmpty value=False> False
<p>
<tr><td>
<b>HTTP cookies are sent between browsers and servers as part of</b><br>
<input type=radio name=cookieXfer value=body>          Document body
<input type=radio name=cookieXfer value=queryString>   query_string
<input type=radio name=cookieXfer value=headers>       HTTP headers
<input type=radio name=cookieXfer value=envVariables>  Environment Variables
<p>
<tr><td>
<b>Cookies can be shared between Different Browsers</b><br>
<input type=radio name=cookieShared value=True>  True
<input type=radio name=cookieShared value=False> False
<p>
<tr><td>
<b>This survey was</b><br>
<input type=radio name=survey value=easy>      Easy
<input type=radio name=survey value=hard>      Hard
<input type=radio name=survey value=xhard>     Extremely hard
<input type=radio name=survey value=noComment> No Comment
<p> 
</table>

<br>
<input type=button value=Previous onClick=history.back()>
<input type=submit value="Submit Survey">
<input type=reset  value=Clear>


</form>

</body>
</html>