
<!-- JavaScript file named: NT06-93_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 the Vision two, an angel speaks of which one of the following? ";
choices[0] = new Array();
choices[0][0] = " Glorify God, Worship God, Praise God ";
choices[0][1] = " Eternal gospel, call for repentance, Praise of God";
choices[0][2] = " Fear God, Fear God, Fear God ";
choices[0][3] = " Fear God, Glorify God, Worship God ";
answers[0] = choices[0][3];

questions[1] = "(2) The eternal gospel an angel in vision two talks about is _____________.";
choices[1] = new Array();
choices[1][0] = " gospel that needs to be preached through out eternity even in New Heaven and New Earth ";
choices[1][1] = " message of hope ";
choices[1][2] = " message that emphasizes the aspect of God's judgment for rejecting God's provision for salvation through Christ ";
choices[1][3] = " nothing significant ";
answers[1] = choices[1][2];

questions[2] = "(3) During and after the seven bowl (vial) judgment, there is general and sincere repentance from sin and turning to God. ";
choices[2] = new Array();
choices[2][0] = " True ";
choices[2][1] = " False ";
answers[2] = choices[2][1];

questions[3] = "(4) Destruction of Babylon is mentioned in 14:8.  Babylon represents ______________. ";
choices[3] = new Array();
choices[3][0] = " literal Babylon, the nation in the Near East ";
choices[3][1] = " revived Babylon Empire of the Old Testament ";
choices[3][2] = " a symbol of power and ruthlessness ";
choices[3][3] = " a symbol of every kind of evil ";
answers[3] = choices[3][3];

questions[4] = "(5) In the Vision 4, an angel speaks a message of _____________. ";
choices[4] = new Array();
choices[4][0] = " hope ";
choices[4][1] = " last judgment, the last judgment ever to be given on earth ";
choices[4][2] = " salvation, the last message of salvation ever to be given to mankind ";
choices[4][3] = " God's wrath ";
answers[4] = choices[4][2];

questions[5] = "(6)  What are the significance of the seven bowl (vial) judgment. ";
choices[5] = new Array();
choices[5][0] = " Most excruciating judgment and precedes the gathering of the remaining unrighteous ";
choices[5][1] = " Final (very last) judgment and precedes the Second Coming of Christ ";
choices[5][2] = " precedes the very last judgment and presents the last oppoortunity to repent ";
choices[5][3] = " last opportunity to repent and precedes Millennial Kingdom ";
answers[5] = choices[5][1];

questions[6] = "(7) God always judges sin. ";
choices[6] = new Array();
choices[6][0] = " True ";
choices[6][1] = " False ";
answers[6] = choices[6][0];

questions[7] = "(8) The last message of salvation to mankind is preached by a man. ";
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.";





