var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) At number 2, what is meant by ‘meeting a need for the person’?";
choices[0] = new Array();
choices[0][0] = "fulfilling somebody’s wishes ";
choices[0][1] = "meeting new friends";
choices[0][2] = "doing something that helps the volunteer";
answers[0] = choices[0][2];

questions[1] = "2) At number 2, what is meant by ‘a negative way’?";
choices[1] = new Array();
choices[1][0] = "someone who has a problem";
choices[1][1] = "someone who is uncooperative ";
choices[1][2] = "saying or doing something which is unhelpful";
choices[1][3] = "saying or do something which is kind";
answers[1] = choices[1][2];

questions[2] = "3) At number 2, what is meant by ‘a selfish activity’?";
choices[2] = new Array();
choices[2][0] = "not letting anybody join in your game";
choices[2][1] = "doing something without sharing";
choices[2][2] = "being a selfish person";
choices[2][3] = "doing something that helps the volunteer";
answers[2] = choices[2][3];

questions[3] = "4) At number 2, what is meant by ‘course content’?";
choices[3] = new Array();
choices[3][0] = "what you are learning on a course";
choices[3][1] = "start date and fees ";
choices[3][2] = "the recruitment process ";
choices[3][3] = "the name of the college or university";
answers[3] = choices[3][0];

questions[4] = "5) At number 2, what is meant by ‘practical activity’?";
choices[4] = new Array();
choices[4][0] = "learning more about a subject through reading and the internet ";
choices[4][1] = "doing something in real life rather than reading or pretending to do it";
choices[4][2] = "doing an activity that involves role play";
answers[4] = choices[4][1];

questions[5] = "6) At number 2, what is meant by ‘very vocational’?";
choices[5] = new Array();
choices[5][0] = "someone who speaks their mind";
choices[5][1] = "involves a lot of talking";
choices[5][2] = "something that is related to working, e.g. volunteering ";
answers[5] = choices[5][2];

questions[6] = "7) At number 4, what is the proof that volunteering is good for finding work?";
choices[6] = new Array();
choices[6][0] = "you can get someone to write a reference for you";
choices[6][1] = "you can easily find a job";
choices[6][2] = "volunteering can help with education  ";
choices[6][3] = "you gain experience and knowledge ";
answers[6] = choices[6][0];

questions[7] = "8) At number 4, what is meant by ‘the first step’?";
choices[7] = new Array();
choices[7][0] = "when you first start walking";
choices[7][1] = "when you first start training";
choices[7][2] = "when you first get a job";
choices[7][3] = "a starting point for finding work in the future is to volunteer now";
answers[7] = choices[7][3];

questions[8] = "9) At number 4, what is meant by ‘chosen field’?";
choices[8] = new Array();
choices[8][0] = "the area you would like to work in, e.g. catering, teaching, etc";
choices[8][1] = "a field for learning";
choices[8][2] = "somewhere you choose to work";
choices[8][3] = "sports ground where you like to play sport";
answers[8] = choices[8][0];

questions[9] = "10) Which is the best explanation of why people should volunteer?";
choices[9] = new Array();
choices[9][0] = "it allows you to work as you are learning";
choices[9][1] = "it allows you to gain experience as you are learning and get a referee";
choices[9][2] = "it allows you to get a referee for a job";
choices[9][3] = "it allows you to improve yourself";
answers[9] = choices[9][1];


// response for getting 100%
response[0] = "Excellent, 100% correct!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done. Good score. Try again to do better?";
// response for getting over 50%
response[3] = "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!?";
// response for getting 10% or more
response[6] = "Not good!  Try again to improve!";
// response for getting 9% or less
response[7] = "Less than 10% correct.";
