Quiz 2
<SELECT> Object

For example, if you have the following selection list:

<SELECT NAME="example" onChange="react(this);">
     <OPTION VALUE="Number One">1
     <OPTION VALUE="The Second">2
     <OPTION VALUE="Three is It" SELECTED>3
</SELECT>

If the user then clicks on the menu and selects the second option

  1. example.options[1].value =
    A. "Number One"
    B. "The Second"
    C. 1
    D. none of the above
  1. example.options[2].text =
    A. "The Second"
    B. 2
    C  "Three is It"
    D. none of the above
  1. example.selectedIndex =
    A. 0
    B. true
    C. 1
    D. none of the above
  1. example.options[0].defaultSelected =
    A. true
    B. 1
    C. false
    D. none of the above
  1. example.options[1].selected =
    A. true
    B. false
    C. 0
    D. 1
  1. example.length =
    A. 5
    B. 2
    C. 3
    D. none of the above
  1. You can select multiple options
    A. true
    B. false
  1. SIZE equals
    A. 5
    B. 2
    C. 1
    D. none of the above
  1. example.type equals
    A. select
    B. select-one
    C. select-multiple
    D. none of the above
  1. <SELECT NAME="example" onChange="react(this);">
    A. react() is passing the form object
    B. react() is passing the select object
    C. react() is passing the VALUE="The Second"
    D. none of the above

You have:    answers correct out of a possible ten.

The question numbers that were not correct are: