
<!-- JavaScript file named: NT06-94_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) In which chapter of Revelation the Millennial Kingdom is presented? ";
choices[0] = new Array();
choices[0][0] = " Chapter 4 ";
choices[0][1] = " Chapter 13 ";
choices[0][2] = " Chapter 19 ";
choices[0][3] = " Chapter 20 ";
answers[0] = choices[0][3];

questions[1] = "(2) Whcih one of the following is not One of the 7 purposes of the Second Coming of Christ? ";
choices[1] = new Array();
choices[1][0] = " To defeat antichrist and the world’s nations & To bind Satan ";
choices[1][1] = " To regather, regenerate and restore faithful Israel & To judge and punish falthless Israel ";
choices[1][2] = " To judge Satan and throw him into the Lake of Fire ";
choices[1][3] = " To separate the sheep from the goats & To judge fallen angels ";
answers[1] = choices[1][2];

questions[2] = "(3) Antichrist uses the great harlot to gain world power and then destroys the great harlot. ";
choices[2] = new Array();
choices[2][0] = " True ";
choices[2][1] = " False ";
answers[2] = choices[2][0];

questions[3] = "(4) Rev. 19:11-16 presents the Socond Coming of Christ. ";
choices[3] = new Array();
choices[3][0] = " True ";
choices[3][1] = " False ";
answers[3] = choices[3][0];

questions[4] = "(5) According to Zechariah 14:4 and 8, when Jesus comes in his Second Coming, He actually _____________. ";
choices[4] = new Array();
choices[4][0] = " floats on earth and goes to Israel first ";
choices[4][1] = " touches His feet on the Mount Olives, and causes earthquake ";
choices[4][2] = " touches His feet on the bank of Ephrates and causes the river to dry up ";
choices[4][3] = " lands in Washington, DC ";
answers[4] = choices[4][1];

questions[5] = "(6)  The resurrections occur for the following groups of people: ____________. ";
choices[5] = new Array();
choices[5][0] = " Jesus resurrected from the dead and there is no more resurrection of humans. ";
choices[5][1] = " Resurrection of the saints from the church age, the saints of the OT and Tribulation period, and the unfaithful ";
choices[5][2] = " Resurrection of the saints from the church age, and saints of the OT and Tribulation period ";
choices[5][3] = " Resurrection of the saints from all ages at the same time, and the unfaithful ";
answers[5] = choices[5][1];

questions[6] = "(7) Babylon in chapter 18 is a literal city of world's political and economic power. ";
choices[6] = new Array();
choices[6][0] = " True ";
choices[6][1] = " False ";
answers[6] = choices[6][0];

questions[7] = "(8) In the Battle of Armageddon, Jesus is riding a white horse.  what does it signify? ";
choices[7] = new Array();
choices[7][0] = " holiness and purity ";
choices[7][1] = " famine ";
choices[7][2] = " victory and triumph ";
choices[7][3] = " purity and destruction ";
answers[7] = choices[7][2];



// 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.";





