
<!-- JavaScript file named: NT06-95_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 Great White Throne Judgment is to ____________. ";
choices[0] = new Array();
choices[0][0] = " Judge the unbelievers ";
choices[0][1] = " Judge the believers for their good works and the unbelievers for their wickedness ";
choices[0][2] = " Judge the believers and the unbelievers ";
choices[0][3] = " None of the above ";
answers[0] = choices[0][0];

questions[1] = "(2) God's primary reason for loosing Satan upon the earth at the end of the Millennium is ___________. ";
choices[1] = new Array();
choices[1][0] = " To defeat Satan together with the humans who are ultimately wicked ";
choices[1][1] = " To reveal the power of God over Satan ";
choices[1][2] = " To reveal the desperate wickedness of the unregenerate human heart ";
choices[1][3] = " To finally and totally destroy Satan ";
answers[1] = choices[1][2];

questions[2] = "(3) One aspect concerning the nature of the Millennium is the removal of the curse. ";
choices[2] = new Array();
choices[2][0] = " True ";
choices[2][1] = " False ";
answers[2] = choices[2][0];

questions[3] = "(4) One of the purposes of the reign of Christ and His saints during the Millennium is to reward the saints. ";
choices[3] = new Array();
choices[3][0] = " True ";
choices[3][1] = " False ";
answers[3] = choices[3][0];

questions[4] = "(5) One of the purposes of the Millennium is to fulfill Abrahamic Covenant.  What is the nature of the covenant? ";
choices[4] = new Array();
choices[4][0] = " To sacrifice the nation ";
choices[4][1] = " To own the land of Palestine forever ";
choices[4][2] = " To rule the world ";
choices[4][3] = " To build a temple of God ";
answers[4] = choices[4][1];

questions[5] = "(6)  During the Millennium, what does Satan do? ";
choices[5] = new Array();
choices[5][0] = " Satan is still trying ot deceive people, but no one listens to him. ";
choices[5][1] = " Satan is commanded to sit and watch ";
choices[5][2] = " Satan is thrown into the bottomless pit and the pit is sealed thus unable to do anything ";
choices[5][3] = " Satan is thrown into hell with antichrist  and the false prophet ";
answers[5] = choices[5][2];

questions[6] = "(7) During the Millennium reign of Christ, people still sin. ";
choices[6] = new Array();
choices[6][0] = " True ";
choices[6][1] = " False ";
answers[6] = choices[6][0];

questions[7] = "(8) Which on of the followiong is not God's final instruction and warning? ";
choices[7] = new Array();
choices[7][0] = " Feel the presence of the Holy Spirit ";
choices[7][1] = " Repent and believe in Christ ";
choices[7][2] = " Worship God ";
choices[7][3] = " Follow the teachings of God ";
answers[7] = choices[7][0];



// 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.";





