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

questions[0] = "1) At number 4, what is meant by ‘recruitment process’?";
choices[0] = new Array();
choices[0][0] = "start dates and salary ";
choices[0][1] = "a job description ";
choices[0][2] = "the course content ";
choices[0][3] = "what you have to do when applying for a job";
answers[0] = choices[0][3];

questions[1] = "2) At number 4, what is meant by ‘the force’?";
choices[1] = new Array();
choices[1][0] = "strength and power";
choices[1][1] = "the police force";
choices[1][2] = "the fire brigade ";
choices[1][3] = "the employer ";
answers[1] = choices[1][1];

questions[2] = "3) At number 4, what is meant by ‘a daunting task’?";
choices[2] = new Array();
choices[2][0] = "the application form is long and difficult";
choices[2][1] = "the application form is easy and stress free ";
choices[2][2] = "the application form is short and difficult";
choices[2][3] = "the application form is long and easy";
answers[2] = choices[2][0];

questions[3] = "4) At number 6, what is meant by ‘a scenario’?";
choices[3] = new Array();
choices[3][0] = "a picture or design";
choices[3][1] = "a film or TV programme ";
choices[3][2] = "a real situation ";
choices[3][3] = "a pretend situation";
answers[3] = choices[3][3];

questions[4] = "5) At number 6, what is meant by ‘role play’?";
choices[4] = new Array();
choices[4][0] = "watch a play to see how people behave";
choices[4][1] = "an activity which involves real life situations ";
choices[4][2] = "a pretend situation where you have to act as if the situation was real";
answers[4] = choices[4][2];

questions[5] = "6) At number 13, what is meant by ‘probation period’?";
choices[5] = new Array();
choices[5][0] = "a term used when you go to prison ";
choices[5][1] = "a length of time where you have to prove you can do the job";
choices[5][2] = "something that doesn’t last very long";
answers[5] = choices[5][1];

questions[6] = "7) At number 19, what is meant by ‘on hands patrol work’?";
choices[6] = new Array();
choices[6][0] = "doing the job through role play";
choices[6][1] = "doing the job in real life rather than reading or role playing";
choices[6][2] = "using your hands when working";
answers[6] = choices[6][1];

questions[7] = "8) At number 19, what is meant by ‘a lot of academic work’?";
choices[7] = new Array();
choices[7][0] = "doing a lot of work";
choices[7][1] = "reading a lot of newspapers";
choices[7][2] = "a lot of reading and writing you have to do in a college or university course";
choices[7][3] = "not studying much";
answers[7] = choices[7][2];

questions[8] = "9) At number 19, what is meant by ‘patrol’?";
choices[8] = new Array();
choices[8][0] = "watch people carefully";
choices[8][1] = "walking the streets with another police officer";
choices[8][2] = "arrest someone";
answers[8] = choices[8][1];

questions[9] = "10) Why is a foundation degree in policing a good idea?";
choices[9] = new Array();
choices[9][0] = "because you can learn about the job with the support of other people";
choices[9][1] = "you get extra money";
choices[9][2] = "so you can apply for other jobs";
choices[9][3] = "it’s good to learn something new";
answers[9] = choices[9][0];


// 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.";