var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) According to the passage, what is now believed about the stone tools used by the Neanderthals compared to those of the Homo sapiens?";
choices[0] = new Array();
choices[0][0] = "They were at least as long lasting.";
choices[0][1] = "They could not have been used as spear tips.";
choices[0][2] = "They were longer and narrower.";
choices[0][3] = "They indicate a superior mental capacity.";
answers[0] = choices[0][0];

questions[1] = "2) The passage states that the Neanderthals relied on the dense forests";
choices[1] = new Array();
choices[1][0] = "for firewood and shelter.";
choices[1][1] = "to provide cover when hunting.";
choices[1][2] = "to provide wood for spears.";
choices[1][3] = "to hide from their attackers.";
answers[1] = choices[1][1];

questions[2] = "3) The hyoid bone is evidence of";
choices[2] = new Array();
choices[2][0] = "a capacity for language.";
choices[2][1] = "an ability to adapt to a cold climate.";
choices[2][2] = "skull capacity.";
choices[2][3] = "the inferior anatomy of the Neanderthal.";
answers[2] = choices[2][0];

questions[3] = "4) The Neanderthals were wiped out";
choices[3] = new Array();
choices[3][0] = "before the Homo sapiens arrived.";
choices[3][1] = "in battles with their opponents.";
choices[3][2] = "after the climate changed.";
choices[3][3] = "due to their primitive social organization. ";
answers[3] = choices[3][2];

questions[4] = "5) According to the passage, which of the following is NOT an older assumption that has now been cast in doubt?";
choices[4] = new Array();
choices[4][0] = "Neanderthals were considerably less intelligent than Homo sapiens.";
choices[4][1] = "The Neanderthals evolved first in Africa.";
choices[4][2] = "Flakes were inferior to blades in all respects.";
choices[4][3] = "Neanderthals had very poor communication skills.";
answers[4] = choices[4][1];

// response for getting 100%
response[0] = "How about applying for a job at Michigan?";
// response for getting 90% or more
response[1] = "Excellent."
// response for getting 70% or more
response[2] = "Well done. You are comfortably over the pass mark.";
// response for getting over 50%
response[3] = "You should do a little more revision before the exam.";
// response for getting 40% or more
response[4] = "More work needs to be done to make the grade.";
// response for getting 20% or more
response[5] = "Don't give up. The grammar isn't too difficult to learn.";
// response for getting 10% or more
response[6] = "Oops!";
// response for getting 9% or less
response[7] = "Oops!";