
<!-- JavaScript file named: NT06-85_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) II PEter shows us that the last days will be characterized by _____________. ";
choices[0] = new Array();
choices[0][0] = " end ";
choices[0][1] = " kindness ";
choices[0][2] = " mockery ";
choices[0][3] = " unbelief ";
answers[0] = choices[0][3];

questions[1] = "(2) In the last days, there will be many false teachers. ";
choices[1] = new Array();
choices[1][0] = " True";
choices[1][1] = " False ";

answers[1] = choices[1][0];

questions[2] = "(3) At the end of the world, God will judge the world by ____________. ";
choices[2] = new Array();
choices[2][0] = " flood ";
choices[2][1] = " fire ";
choices[2][2] = " plagues ";
choices[2][3] = " wars ";
answers[2] = choices[2][1];

questions[3] = "(4) How are the Christians to respond to false teachers? ";
choices[3] = new Array();
choices[3][0] = " argue ";
choices[3][1] = " ignore them ";
choices[3][2] = " refute their teachings ";
choices[3][3] = " proclaim the truth ";
answers[3] = choices[3][3];

questions[4] = "(5) Our understtanding and confidence in the judgment to come, we should be _________. ";
choices[4] = new Array();
choices[4][0] = " scared ";
choices[4][1] = " godly living ";
choices[4][2] = " personal holiness ";
choices[4][3] = " Answers 2 & 3 ";
answers[4] = choices[4][3];

questions[5] = "(6) Why has it taken so long and perhaps just as long for the Second coming of Christ? ";
choices[5] = new Array();
choices[5][0] = " God's time is different than our time. ";
choices[5][1] = " It gives time for Christians to study the Bible.";
choices[5][2] = " It gives more time for people to come to know God. ";
choices[5][3] = " God is taking a break. ";
answers[5] = choices[5][2];

questions[6] = "(7) Peter wrote II Peter to warn us about ___________________. ";
choices[6] = new Array();
choices[6][0] = " false teachers' stories ";
choices[6][1] = " being led astray by the false teachers ";
choices[6][2] = " the last days ";
choices[6][3] = " the flood ";
answers[6] = choices[6][1];

questions[7] = "(8) Which one of the following is not true? ";
choices[7] = new Array();
choices[7][0] = " The former world: Attitude of unbelief ";
choices[7][1] = " The present world: A fiery end of the false and corrupt ";
choices[7][2] = " The present world: A world of Christians against non-christians ";
choices[7][3] = " The future world: New heaven and new earth ";
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.";





