
<!-- JavaScript file named: NT06-82_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 is the key word in I Peter?";
choices[0] = new Array();
choices[0][0] = " love ";
choices[0][1] = " judgment ";
choices[0][2] = " hope ";
choices[0][3] = " suffering ";
answers[0] = choices[0][3];

questions[1] = "(2) What is the key concept of I Peter?";
choices[1] = new Array();
choices[1][0] = " love ";
choices[1][1] = " judgment ";
choices[1][2] = " hope";
choices[1][3] = " suffering";
answers[1] = choices[1][2];

questions[2] = "(3) Did the Jews understand the concept of the unity of Jew and Gentile?";
choices[2] = new Array();
choices[2][0] = " Yes ";
choices[2][1] = " No ";
answers[2] = choices[2][1];

questions[3] = "(4) What is the vehicle of our salvation?";
choices[3] = new Array();
choices[3][0] = " God the Father";
choices[3][1] = " Jesus Christ";
choices[3][2] = " Holy Spirit ";
choices[3][3] = " the Word of God ";
answers[3] = choices[3][3];

questions[4] = "(5) What are our responsibilities to the Son of God?";
choices[4] = new Array();
choices[4][0] = " to exercise our spiritual gifts ";
choices[4][1] = " to become a priest ";
choices[4][2] = " to offer up spiritual sacrifices ";
choices[4][3] = " to spend all our time at the church ";
answers[4] = choices[4][2];

questions[5] = "(6) What is the dual function of the church? ";
choices[5] = new Array();
choices[5][0] = " to worship God & to praise God ";
choices[5][1] = " to worship God & to know Jesus ";
choices[5][2] = " to start programs & to spend as much time in those programs ";
choices[5][3] = " to worship God & to witness to men ";
answers[5] = choices[5][3];

questions[6] = "(7) To return evil for good is _______ ";
choices[6] = new Array();
choices[6][0] = " natural ";
choices[6][1] = " unnatural ";
choices[6][2] = " supernatural ";
choices[6][3] = " superhuman ";
answers[6] = choices[6][1];

questions[7] = "(8) What is our responsibility to the Word of God? ";
choices[7] = new Array();
choices[7][0] = " to study & to memorize ";
choices[7][1] = " to study & to grow ";
choices[7][2] = " to read & to memorize ";
choices[7][3] = " to listen & to do ";
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.";





