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

questions[0] = "1) At number 18, what is meant by ‘employment job shop’?";
choices[0] = new Array();
choices[0][0] = "a place that will pay you your wages";
choices[0][1] = "a place to get help finding work";
choices[0][2] = "a place to get help financially ";
choices[0][3] = "a place that will offer you a job straight away ";
answers[0] = choices[0][1];

questions[1] = "2) At number 28, what is meant by ‘we have an awful lot’?";
choices[1] = new Array();
choices[1][0] = "we have terrible students";
choices[1][1] = "we have a small amount";
choices[1][2] = "we have bad students";
choices[1][3] = "we have a large amount";
answers[1] = choices[1][3];

questions[2] = "3) At number 34, what is meant by ‘multicultural’?";
choices[2] = new Array();
choices[2][0] = "lots of different types of people mixed together";
choices[2][1] = "a mixture of young and old people ";
choices[2][2] = "someone who is very artistic and intellectual  ";
choices[2][3] = "a  mixture of male and female";
answers[2] = choices[2][0];

questions[3] = "4) At number 42, what is meant by ‘PR marketing’?";
choices[3] = new Array();
choices[3][0] = "Private Retail - helping students in the job market";
choices[3][1] = "Perfect Results – trying to make sure students get the highest grades ";
choices[3][2] = "Public Relations - helping to create a good business image with the public";
answers[3] = choices[3][2];

questions[4] = "5) At number 51, what is meant by ‘a mature learner’?";
choices[4] = new Array();
choices[4][0] = "someone over the age of 25 who has many qualifications ";
choices[4][1] = "someone between the age of 21-25 who has a degree";
choices[4][2] = "someone over 21 who might not have the same qualifications as someone younger";
choices[4][3] = "someone over 18 who has no qualifications ";
answers[4] = choices[4][2];

questions[5] = "6) At number 55, what is meant by ‘check their comparability’?";
choices[5] = new Array();
choices[5][0] = "check if they are suitable for the course ";
choices[5][1] = "check if they have passed enough qualifications";
choices[5][2] = "check if their education is like British education";
choices[5][3] = "check if the qualifications in one country are similar to English qualifications";
answers[5] = choices[5][3];

questions[6] = "7) At number 57, what is meant by ‘IELTS’?";
choices[6] = new Array();
choices[6][0] = "International English Language Testing System";
choices[6][1] = "International English Learning Testing System";
choices[6][2] = "International English Language Teaching System";
choices[6][3] = "International English Language Testing Services";
answers[6] = choices[6][0];

questions[7] = "8) At number 81, what is meant by ‘FE to HE scheme’?";
choices[7] = new Array();
choices[7][0] = "a system for helping people study at college";
choices[7][1] = "a system for helping people go from college to university";
choices[7][2] = "a system for helping people study at university";
answers[7] = choices[7][1];

questions[8] = "9) At number 87, what educational level is university?";
choices[8] = new Array();
choices[8][0] = "4";
choices[8][1] = "3";
choices[8][2] = "5";
choices[8][3] = "2";
answers[8] = choices[8][0];

questions[9] = "10) Which is the best description of Jacquie’s job?";
choices[9] = new Array();
choices[9][0] = "a research assistant";
choices[9][1] = "a senior researcher";
choices[9][2] = "someone who tries to find out why some people struggle to join university";
choices[9][3] = "a research who likes working at the university";
answers[9] = choices[9][2];


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