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 ‘volunteering’?";
choices[0] = new Array();
choices[0][0] = "working in a job to gain experience but without pay";
choices[0][1] = "working and getting paid for the job";
choices[0][2] = "not working and getting paid";
choices[0][3] = "gaining experience with pay";
answers[0] = choices[0][0];

questions[1] = "2) At number 2, what do you think ‘Canopy Housing Project’ do?";
choices[1] = new Array();
choices[1][0] = "an organisation which repairs homes to help those that are homeless";
choices[1][1] = "creating new houses";
choices[1][2] = "a removal company which helps to move people’s belongings into their homes";
answers[1] = choices[1][0];

questions[2] = "3) At number 14, what does Patrice do to help volunteers?";
choices[2] = new Array();
choices[2][0] = "cooks them their dinner";
choices[2][1] = "teaches them decorating skills";
choices[2][2] = "teaches them maths and English";
choices[2][3] = "finds them jobs to do";
answers[2] = choices[2][1];

questions[3] = "4) At number 14, what is meant by ‘on site’?";
choices[3] = new Array();
choices[3][0] = "the place where you go to on your break and dinner time";
choices[3][1] = "parts of the work place where he sometimes works";
choices[3][2] = "the main place where you work";
choices[3][3] = "the homes of the tenants ";
answers[3] = choices[3][2];

questions[4] = "5) What was the main reason why Patrice got a job?";
choices[4] = new Array();
choices[4][0] = "he knew the manager";
choices[4][1] = "the company was looking for special people";
choices[4][2] = "he did very well in his interview";
choices[4][3] = "he worked for the company first as a volunteer";
answers[4] = choices[4][3];

questions[5] = "6) At number 28, what did Patrice‘s employer help him to do?";
choices[5] = new Array();
choices[5][0] = "to find a course suitable for his job";
choices[5][1] = "to help him move into his home";
choices[5][2] = "to help him find another job";
answers[5] = choices[5][0];

questions[6] = "7) At number 36, what is meant by ‘informal interview’?";
choices[6] = new Array();
choices[6][0] = "an interview for a job where the people are friendly and relaxed";
choices[6][1] = "an interview for a job where the people are very serious";
choices[6][2] = "an interview where you must where a suit";
choices[6][3] = "an interview where you can wear normal clothes";
answers[6] = choices[6][0];

questions[7] = "8) At number 38, what was Patrice scared about in his interview?";
choices[7] = new Array();
choices[7][0] = "the person who was interviewing him";
choices[7][1] = "he wasn’t scared of anything";
choices[7][2] = "if his qualifications were suitable ";
choices[7][3] = "the other candidates applying for the job";
answers[7] = choices[7][1];

questions[8] = "9) How many people applied for the Job that Patrice eventually got?";
choices[8] = new Array();
choices[8][0] = "more than 20";
choices[8][1] = "exactly 20";
choices[8][2] = "about 20";
choices[8][3] = "less than 20";
answers[8] = choices[8][2];

questions[9] = "10) Why was the interview simple for Patrice?";
choices[9] = new Array();
choices[9][0] = "because he has had many interviews before";
choices[9][1] = "because he had done practice interviews ";
choices[9][2] = "because he knew what questions were going to be asked";
choices[9][3] = "because he knew the manager";
answers[9] = choices[9][3];


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