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

questions[0] = "1) At number 2, what does a ‘community learning administrator’ do in their job?";
choices[0] = new Array();
choices[0][0] = "teaches the course subject ";
choices[0][1] = "complete paperwork and help students to join classes";
choices[0][2] = "deal with issues such as student finance ";
choices[0][3] = "helps the teachers with their work";
answers[0] = choices[0][1];

questions[1] = "2) At number 6, why are ESOL student booked in for interviews?";
choices[1] = new Array();
choices[1][0] = "to test their computer skills";
choices[1][1] = "to test their English language skills";
choices[1][2] = "to see what their personality is like";
choices[1][3] = "to find out their skills and qualities ";
answers[1] = choices[1][1];

questions[2] = "3) At number 9, what is meant by ‘face-to-face enquiries’?";
choices[2] = new Array();
choices[2][0] = "communicating through email";
choices[2][1] = "talking to somebody over the phone";
choices[2][2] = "talking too close to someone’s face";
choices[2][3] = "asking questions of someone who is in front of you";
answers[2] = choices[2][3];

questions[3] = "4) At number 12, which two courses are most popular with students?";
choices[3] = new Array();
choices[3][0] = "maths and science";
choices[3][1] = "arts and crafts as well as computers";
choices[3][2] = "ESOL and computers";
choices[3][3] = "maths and English";
answers[3] = choices[3][2];

questions[4] = "5) At number 14, what is meant by ‘diversity in the area’?";
choices[4] = new Array();
choices[4][0] = "changes in the area";
choices[4][1] = "the variety of different people in the area";
choices[4][2] = "everyone is the same in the area";
choices[4][3] = "no one speaks much English in the area";
answers[4] = choices[4][1];

questions[5] = "6) At number 16, what do students try to talk to Joanne on their coffee break?";
choices[5] = new Array();
choices[5][0] = "to practise speaking English";
choices[5][1] = "to find out about other available courses";
choices[5][2] = "to find out what she is doing at weekend";
choices[5][3] = "to ask her where the toilet is ";
answers[5] = choices[5][0];

questions[6] = "7) At number 22, what is meant by ‘the pressures of adult education’?";
choices[6] = new Array();
choices[6][0] = "how difficult education is for teachers";
choices[6][1] = "the hours you have to spend studying";
choices[6][2] = "the financial problems of studying";
choices[6][3] = "the difficulties of studying as an adult";
answers[6] = choices[6][3];

questions[7] = "8) At number 22, what is meant by ‘issues like domestic’?";
choices[7] = new Array();
choices[7][0] = "problems or difficulties to do with the home and family";
choices[7][1] = "problems with the government";
choices[7][2] = "problems at the work place or studying ";
choices[7][3] = "problems with the college";
answers[7] = choices[7][0];

questions[8] = "9) At number 26, what is meant by ‘different perspectives people may have’?";
choices[8] = new Array();
choices[8][0] = "different reasons why people study";
choices[8][1] = "different reasons why people teach";
choices[8][2] = "different beliefs and opinions people have";
answers[8] = choices[8][2];

questions[9] = "10) At number 27, what is meant by ‘real variety of different courses’?";
choices[9] = new Array();
choices[9][0] = "a lot of different courses";
choices[9][1] = "not many different courses";
choices[9][2] = "courses for people from different cultures";
choices[9][3] = "courses for older and younger people";
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.";
