
<!-- JavaScript file named: NT06-87_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) I John talks about the lust of the flesh.  It can be defined as ___________. ";
choices[0] = new Array();
choices[0][0] = " wrong values ";
choices[0][1] = " wrong beliefs ";
choices[0][2] = " egotism ";
choices[0][3] = " wrong desire ";
answers[0] = choices[0][3];

questions[1] = "(2) The lust of the eyes can be defined as __________. ";
choices[1] = new Array();
choices[1][0] = " placing exaggerated importance on appearance ";
choices[1][1] = " obessively wanting to look like models ";
choices[1][2] = " judging people by their apprearance ";
choices[1][3] = " All of the above ";
answers[1] = choices[1][3];

questions[2] = "(3) The pride of life can be defined as ___________. ";
choices[2] = new Array();
choices[2][0] = " one who is an egoist ";
choices[2][1] = " an exaggerated sense of self-importance ";
choices[2][2] = " one who believes in getting the most out of least amount of work ";
choices[2][3] = " none of the above ";
answers[2] = choices[2][1];

questions[3] = "(4) I John 5:16 and 17 are considered the most difficult passages in I John. ";
choices[3] = new Array();
choices[3][0] = " True ";
choices[3][1] = " False ";
answers[3] = choices[3][0];

questions[4] = "(5) What is the main emphasis of I John 5:16 and 17? ";
choices[4] = new Array();
choices[4][0] = " intercessory prayer & warning not to take sin lightly ";
choices[4][1] = " intercessory prayer & warn that there is a sin leading to death ";
choices[4][2] = " rebuke and reprove brother sinning & warn them not to take sin lightly ";
choices[4][3] = " pray for the dead & warning not to take sin lightly ";
answers[4] = choices[4][0];

questions[5] = "(6) Verse 2:16 all that is in the world can be enemies of fellowship with God, it means _________? ";
choices[5] = new Array();
choices[5][0] = " to reject everything from the world ";
choices[5][1] = " not follow world leaders ";
choices[5][2] = " not following the ideas, values, people, etc. that are contrary to the biblical standard ";
choices[5][3] = " not following the ideas, values, people, etc. that are contrary to the baptist standard";
answers[5] = choices[5][2];

questions[6] = "(7) When Apostle tells little children in 2:12, he is talking about _________. ";
choices[6] = new Array();
choices[6][0] = " elementary school aged children ";
choices[6][1] = " new Christians ";
choices[6][2] = " growing Christians ";
choices[6][3] = " new Christians who are elderly ";
answers[6] = choices[6][1];

questions[7] = "(8) What are the 5 realities of life that encourage fellowship with God?";
choices[7] = new Array();
choices[7][0] = " Promise of eternal life, Confidance at the rapture, Promise of a new body ";
choices[7][1] = " Boldness at the judgment, Life without fear ";
choices[7][2] = " Answers 1 & 2 ";
choices[7][3] = " Answers 1 & Boldness at the judgment, Boldness to witness ";
answers[7] = choices[7][2];



// 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.";





