
<!-- JavaScript file named: NT06-88_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) What did Apostle John write in the book of Revelation? ";
choices[0] = new Array();
choices[0][0] = " what he read in a book ";
choices[0][1] = " what he wanted to teach the church of his teachings ";
choices[0][2] = " what he saw in a vision ";
choices[0][3] = " what he experienced on the island of Patmos ";
answers[0] = choices[0][2];

questions[1] = "(2) What are the two fold theme of Revelation? ";
choices[1] = new Array();
choices[1][0] = " Rapture & judgment ";
choices[1][1] = " The person of Christ & instruction to believers ";
choices[1][2] = " Millennial rule of the saints & the last judgment ";
choices[1][3] = " Jesus is God & His rule in the last days ";
answers[1] = choices[1][1];

questions[2] = "(3) Revelation is the only prophetical book in the New Testament. ";
choices[2] = new Array();
choices[2][0] = " True ";
choices[2][1] = " False ";
answers[2] = choices[2][0];

questions[3] = "(4) How did Christ convey His final words to the church? ";
choices[3] = new Array();
choices[3][0] = " Through a letter to all the churches in Asia Minor ";
choices[3][1] = " Through seven part messages to seven individual churches in Asia Minor. ";
choices[3][2] = " Through a vision to seven individual church leaders in Asia Minor ";
choices[3][3] = " Through e-mail ";
answers[3] = choices[3][1];

questions[4] = "(5) Which one of the following churches left its first love? ";
choices[4] = new Array();
choices[4][0] = " Ephesus ";
choices[4][1] = " Sardis ";
choices[4][2] = " Laodicea ";
choices[4][3] = " Philadelphia ";
answers[4] = choices[4][0];

questions[5] = "(6) Which one of the following churches compromised morality? ";
choices[5] = new Array();
choices[5][0] = " Smyrna ";
choices[5][1] = " Thyatira ";
choices[5][2] = " Pergamos ";
choices[5][3] = " Laodicea ";
answers[5] = choices[5][2];

questions[6] = "(7) Which one of the following churches was lukewarm? ";
choices[6] = new Array();
choices[6][0] = " Sardis ";
choices[6][1] = " Pergamos ";
choices[6][2] = " Philadelphia ";
choices[6][3] = " Laodicea ";
answers[6] = choices[6][3];

questions[7] = "(8) Which one of the following churches was a spiritually dead church? ";
choices[7] = new Array();
choices[7][0] = " Ephesus ";
choices[7][1] = " Sardis ";
choices[7][2] = " Pergamos ";
choices[7][3] = " Laodicea ";
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.";





