
<!-- JavaScript file named: NT06-86_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, the Apostle John is writing about several subjects.  Which of the following is not one of the subjects?";
choices[0] = new Array();
choices[0][0] = " babel ";
choices[0][1] = " love ";
choices[0][2] = " obedience ";
choices[0][3] = " assurance ";
answers[0] = choices[0][0];

questions[1] = "(2) Throught the Bible, the beginning is mentioned.  Which of the following is not one of the 3 beginnings mentioned? ";
choices[1] = new Array();
choices[1][0] = " Genesis 1:1 "
choices[1][1] = " John 1:1 ";
choices[1][2] = " Luke 1:1 ";
choices[1][3] = " I John 1:1 ";
answers[1] = choices[1][2];

questions[2] = "(3) I John tells us that the Son of God came to earth to ___________. ";
choices[2] = new Array();
choices[2][0] = " fulfill covenant ";
choices[2][1] = " be our priest ";
choices[2][2] = " show miracles ";
choices[2][3] = " reveal God to man ";
answers[2] = choices[2][3];

questions[3] = "(4) What are some of the requirements to have fellowship with God? ";
choices[3] = new Array();
choices[3][0] = " To recognize our sin & to confess our sins ";
choices[3][1] = " To walk in the light & to abide in Christ ";
choices[3][2] = " To help brothers in need & to live in isolation from the world ";
choices[3][3] = " Answers 1 & 2 ";
answers[3] = choices[3][3];

questions[4] = "(5) I John 1:9 concerns confession of sins; 2:1 concerns _________. ";
choices[4] = new Array();
choices[4][0] = " scaring off sin ";
choices[4][1] = " advocating sin ";
choices[4][2] = " forsaking sin ";
choices[4][3] = " resisting sin ";
answers[4] = choices[4][2];

questions[5] = "(6) What is the proof of real relationship with God? ";
choices[5] = new Array();
choices[5][0] = " fellowship with God ";
choices[5][1] = " obedience to God ";
choices[5][2] = " scriptural knowledge ";
choices[5][3] = " witnessing of God ";
answers[5] = choices[5][1];

questions[6] = "(7) I John 3:3 tells us that we know for certain that we have geniune relationship with God when we live _________. ";
choices[6] = new Array();
choices[6][0] = " rapture-influenced life ";
choices[6][1] = " a life of love ";
choices[6][2] = " carefully ";
choices[6][3] = " reward-influenced life ";
answers[6] = choices[6][0];

questions[7] = "(8) What are the results of fellowship? ";
choices[7] = new Array();
choices[7][0] = " joy, assurance ";
choices[7][1] = " encouragement ";
choices[7][2] = " Spiritual maturity ";
choices[7][3] = " All of the above ";
answers[7] = choices[7][3];



// 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.";





