Practice Quiz 1

  1. Hidden Fields cannot be altered by JavaScript
    A. true
    B. false
  1. the value of the hidden field is not passed along with the other form values
    A. true
    B. false
  1. A Form can only be submitted by the submit button
    A. true
    B. false
  1. It is possible to override the ACTION, METHOD, ENCTYPE and TARGET Form attributes.
    A. true
    B. false

<INPUT TYPE="text" NAME="results" onFocus="this.blur();">

  1. this.blur() means
    A. make the text disappear
    B. won't allow you to alter the text field
    C. the Method doesn't exist
    D. none of the above

var strNum = "19";
eval(3 * strNum);

  1. the eval statement above will result in an error message
    A. true
    B. false
  1. document.form1.radio2.checked = false; causes the radio button to be unchecked (if it was checked)
    A. true
    B. false

<FORM>
    <INPUT TYPE="radio" NAME="stooges" VALUE="Larry" CHECKED>Larry
    <INPUT TYPE="radio" NAME="stooges" VALUE="Moe">Moe
    <INPUT TYPE="radio" NAME="stooges" VALUE="Curly">Curly
</FORM>

  1. You can't have multiple objects on a Form have the same name as in the example above
    A. true
    B. false
  1. <SELECT NAME="list1" MULTIPLE="4"> is a valid statement
    A. true
    B. false
  1. javascript:void(null) is a way to deaden a link
    A. true
    B. false

You have:    answers correct out of a possible ten.

The question numbers that were not correct are: