
<!-- JavaScript file named: NT06-91_exer_config.js  -->

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 color of the Four Horsemen of the Apocalypse represent which of the following? ";
choices[0] = new Array();
choices[0][0] = " white: good, red: evil black: death, pale: malnourishment ";
choices[0][1] = " white: peace, red: wa, black: death, pale: famine ";
choices[0][2] = " white: good, red: evil, black: valor, pale: weakness ";
choices[0][3] = " white: peace, red: war, black: famine, pale: death ";
answers[0] = choices[0][3];

questions[1] = "(2) The sounding of the seventh trumpet signals _______________.";
choices[1] = new Array();
choices[1][0] = " the rule of antichrist ";
choices[1][1] = " the end of rapture ";
choices[1][2] = " the beginning of the end of Satan ";
choices[1][3] = " the beginning of New Earth ";
answers[1] = choices[1][2];

questions[2] = "(3) In the opening of the seal judgments, there is a break in the action before the seventh seal is opened. ";
choices[2] = new Array();
choices[2][0] = " True ";
choices[2][1] = " False ";
answers[2] = choices[2][0];

questions[3] = "(4) The two witnesses of Rev. 11 are ______________. ";
choices[3] = new Array();
choices[3][0] = " Enoch and Elijah ";
choices[3][1] = " Samson and Delilah ";
choices[3][2] = " Moses and Elijah ";
choices[3][3] = " possibly (1) or (3), but uncertain ";
answers[3] = choices[3][3];

questions[4] = "(5) Which seal consists of seven trumpets? ";
choices[4] = new Array();
choices[4][0] = " Seventh ";
choices[4][1] = " Sixth";
choices[4][2] = " Fourth ";
choices[4][3] = " First ";
answers[4] = choices[4][0];

questions[5] = "(6)  A study of the judgments indicate that God's wrath will _____________. ";
choices[5] = new Array();
choices[5][0] = " diminish ";
choices[5][1] = " intensify and heat up ";
choices[5][2] = " diminish and then intensify then repeats the pattern ";
choices[5][3] = " None of the above ";
answers[5] = choices[5][1];

questions[6] = "(7) The 144,000 are called Billy Sundays after a well-known evangelist Billy Sunday because _____________. ";
choices[6] = new Array();
choices[6][0] = " they preach only on Sundays ";
choices[6][1] = " they are Americans ";
choices[6][2] = " they will lead ,multitude of people to Christ ";
choices[6][3] = " they can sing like American Idol ";
answers[6] = choices[6][2];

questions[7] = "(8) God's judgment in the last days will unite people and bring them to worldwide repentance. ";
choices[7] = new Array();
choices[7][0] = " True ";
choices[7][1] = " False ";
answers[7] = choices[7][1];



// response for getting 100%
response[0] = "Excellent, thank you for your hard work!";
// 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!?  Remember Colossians 3:23";
// response for getting 10% or more
response[6] = "That was pretty poor!  Try again to improve and remember Colossians 3:23.";
// response for getting 9% or less
response[7] = "Oh dear, Try harder and remember Colossians 3:23.";





