Part 1 - Fill in the Blank

Fill in the blank in the following questions.

  1. document.Images[1] refers to the second element in the Images Array.

  2. document.quizform.question10.value refers to the answer the student entered into the text input called question10 on the form called quizform.

  3. if(document.getElementById("question10") != null) is asking whether question10 is empty.

  4. document.Images[0].src specifies the file path for the first element in the Images Array.

  5. var score = gradeQuiz(); replaces the value in score with the result of the gradeQuiz function. (several words)

  6. How many function calls should you make in an event handler like onclick? 1.

  7. If you need to call more than one function in response to an event, you can build an uber function for the event handler that calls the other functions, true or false? True.

  8. A set of inputs are nested inside a parent form tag.