
<!-- JavaScript file named: NT06-90_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 chapter 4 of Revelation, who are the persons involved? ";
choices[0] = new Array();
choices[0][0] = " God, elders, angels and 12 Hebrew tribal leaders ";
choices[0][1] = " The Father, the Son, the Holy Spirit and 4 living creatures ";
choices[0][2] = " The Father, 24 elders, 4 living creatures ";
choices[0][3] = " The Father, 24 elders, Holy Spirit and 4 living creatures ";
answers[0] = choices[0][3];

questions[1] = "(2) What are the two fold theme of Revelation? ";
choices[1] = new Array();
choices[1][0] = " Discussion of pre-millennialism vs. post-millennialism ";
choices[1][1] = " Millennial rule of the saints & the last judgment ";
choices[1][2] = " The person of Christ & instruction to believers ";
choices[1][3] = " Jesus is God & Jesus is man ";
answers[1] = choices[1][2];

questions[2] = "(3) The rapture takes place between chapters 3 and 4. ";
choices[2] = new Array();
choices[2][0] = " True ";
choices[2][1] = " False ";
answers[2] = choices[2][0];

questions[3] = "(4) The seven-sealed scroll of chapter 5 is ______________. ";
choices[3] = new Array();
choices[3][0] = " The letter to the millennial rulers ";
choices[3][1] = " the tltle deed to each saved person's mansion in heaven ";
choices[3][2] = " the royal title deed to the earth ";
choices[3][3] = " the list of nations ";
answers[3] = choices[3][2];

questions[4] = "(5) The Old Testament Levitical law of redemption _______________. ";
choices[4] = new Array();
choices[4][0] = " has no relevance in the New Testament because it has to do with the nation of Israel ";
choices[4][1] = " is significant to the New Testament especially concerning Jesus Christ as the Redeemer ";
choices[4][2] = " is significant to the nation of Israel in the end times but not to the church ";
choices[4][3] = " is effective today in any culture ";
answers[4] = choices[4][1];

questions[5] = "(6) The 24 elders that are present at the Throne of God are most likely to be ______________. ";
choices[5] = new Array();
choices[5][0] = " 12 disciples and their first sons ";
choices[5][1] = " the representatives of the whole church ";
choices[5][2] = " representatives of 12 Hebrew tribes and their counterparts of the church ";
choices[5][3] = " authors of the Bible and 11 disciples not counting Judas ";
answers[5] = choices[5][1];

questions[6] = "(7) Which one of the follwoing is not a possible explanation of the 4 living creatures? ";
choices[6] = new Array();
choices[6][0] = " the tribe of Judah, Ephraim, Reuben and Dan";
choices[6][1] = " Cherubim ";
choices[6][2] = " True ministers of the gospel ";
choices[6][3] = " virtual pet created with Java and XML ";
answers[6] = choices[6][3];

questions[7] = "(8) The seven sealed scroll appears to be like ______________ ";
choices[7] = new Array();
choices[7][0] = " fancy letters from the medieval times with ring signet as a seal ";
choices[7][1] = " the title deed to the land in the OT times ";
choices[7][2] = " the secret book for the royalty ";
choices[7][3] = " none of the above ";
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.";





