/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: James Crooke :: http://www.cj-design.com */

var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

// To add more questions, just follow the format below.

questions[0] = "1) The apple _____red";
choices[0] = new Array();
choices[0][0] = "is";
choices[0][1] = "are";
choices[0][2] = "has";
choices[0][3] = "were";
answers[0] = choices[0][0];

questions[1] = "2) Adria ______given in her project yet.";
choices[1] = new Array();
choices[1][0] = "can't";
choices[1][1] = "hasn't";
choices[1][2] = "wasn't";
choices[1][3] = "won't";
answers[1] = choices[1][1];

questions[2] = "3) If Michael ________ go to the party, he _________ very tired when he got home.";
choices[2] = new Array();
choices[2][0] = "has to…would have";
choices[2][1] = "had to…would be";
choices[2][2] = "have to…would be";
choices[2][3] = "have to…would have";
answers[2] = choices[2][1];

questions[3] = "4) If you ________ rich, what would you buy?";
choices[3] = new Array();
choices[3][0] = "are";
choices[3][1] = "is";
choices[3][2] = "was";
choices[3][3] = "were";
answers[3] = choices[3][3];

questions[4] = "5) By the time we got there, the show ________.";
choices[4] = new Array();
choices[4][0] = "is over already";
choices[4][1] = "was over already";
choices[4][2] = "have been over already";
choices[4][3] = "will be over";
answers[4] = choices[4][1];

questions[5] = "6) Michelle doesn't like that plan, so she plans to turn it __________.";
choices[5] = new Array();
choices[5][0] = "on";
choices[5][1] = "off";
choices[5][2] = "down";
choices[5][3] = "up";
answers[5] = choices[5][2];

questions[6] = "7) Rarely _________ anyone get that question correct.";
choices[6] = new Array();
choices[6][0] = "has";
choices[6][1] = "have";
choices[6][2] = "does";
choices[6][3] = "could";
answers[6] = choices[6][2];

questions[7] = "8) How __________ does that book cost?";
choices[7] = new Array();
choices[7][0] = "many";
choices[7][1] = "much";
choices[7][2] = "more";
choices[7][3] = "less";
answers[7] = choices[7][1];

questions[8] = "9) The __________ of damage to the building is difficult to express.";
choices[8] = new Array();
choices[8][0] = "number";
choices[8][1] = "many";
choices[8][2] = "amount";
choices[8][3] = "quantity";
answers[8] = choices[8][2];

questions[9] = "10) The agreement __________ you and me will not be complete until we sign the contract.";
choices[9] = new Array();
choices[9][0] = "among";
choices[9][1] = "for";
choices[9][2] = "between";
answers[9] = choices[9][2];

// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, you got more than half of the questions right, can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again!?";
// response for getting 10% or more
response[6] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Oh dear, I think you need to go back to school (or try again)!";




