Which of the following creates a hidden field named H_age and assigns the number 25 to it?
a. print "<INPUT TYPE=hidden KEY=H_age VALUE=25>\n" ;
b. print "<INPUT TYPE=hidden KEY=H_age VALUE="25">\n";
c. print "<INPUT TYPE=hidden NAME=H_age VALUE=25>\n";
d. Both a and b.