
<!-- 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) Walking in truth means ___________. ";
choices[0] = new Array();
choices[0][0] = " a way of life the world envies ";
choices[0][1] = " a way of life the world can notice and will desire to be the same ";
choices[0][2] = " a way of life the world notices to be hypocritical ";
choices[0][3] = " life styles of rich and famous ";
answers[0] = choices[0][1];

questions[1] = "(2) Which of the following is not one of the three words that help us remember the message of III John? ";
choices[1] = new Array();
choices[1][0] = " Perseverance ";
choices[1][1] = " Properity ";
choices[1][2] = " Pride ";
choices[1][3] = " Praise ";
answers[1] = choices[1][0];

questions[2] = "(3) Gaius is known for walking in ___________. ";
choices[2] = new Array();
choices[2][0] = " love ";
choices[2][1] = " with a Bible ";
choices[2][2] = " sidewalk ";
choices[2][3] = " truth ";
answers[2] = choices[2][3];

questions[3] = "(4) Which is the shortest book of the Bible? ";
choices[3] = new Array();
choices[3][0] = " II John ";
choices[3][1] = " Jude ";
choices[3][2] = " Psalms ";
choices[3][3] = " Philemon ";
answers[3] = choices[3][0];

questions[4] = "(5) Demitrius is best described by the word _________. ";
choices[4] = new Array();
choices[4][0] = " fictitiousness ";
choices[4][1] = " egotist ";
choices[4][2] = " frank ";
choices[4][3] = " fidelity ";
answers[4] = choices[4][3];

questions[5] = "(6) II John 7 says many deceivers have gone out into the world.  What false doctrine were they teaching? ";
choices[5] = new Array();
choices[5][0] = " Denial of Christ's incarnation ";
choices[5][1] = " Denial of Christ's person ";
choices[5][2] = " Denial of Christ's purpose ";
choices[5][3] = " Denial of Christ's mission ";
answers[5] = choices[5][0];

questions[6] = "(7) Apostle John and Diotrephes were good friends and co-workers in Christ. ";
choices[6] = new Array();
choices[6][0] = " True ";
choices[6][1] = " False ";
answers[6] = choices[6][1];

questions[7] = "(8) II John 8a says Watch yourselves, that you do not lose what we have accomplished.  This is Apostle John's warning to us to look out for __________. ";
choices[7] = new Array();
choices[7][0] = " sin ";
choices[7][1] = " self ";
choices[7][2] = " deceivers ";
choices[7][3] = " Diotrephes ";
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.";





