Consider the following HTML code:
<INPUT TYPE=text NAME=state VALUE=>
Given this code, which one of the following choices best describes how the data should be written
to a file?
A.
print OUTPUT, “state” .param(“State: “);
B.
print OUTPUT “State: ” .param(“state”);
C.
print OUTPUT, “State: ” . (“state”);
D.
OUTPUT “state” .param(“State: “);