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

questions[0] = "1) At number 10, what is meant by ‘what was the atmosphere like’?";
choices[0] = new Array();
choices[0][0] = "how was the school decorated ";
choices[0][1] = "what was the teachers and head teacher like";
choices[0][2] = "how did the place feel, e.g. friendly, formal, scary, happy";
choices[0][3] = "where the school was situated";
answers[0] = choices[0][2];

questions[1] = "2) At number 11, what is meant by ‘were the children engaged?";
choices[1] = new Array();
choices[1][0] = "were the children playing nicely with each other";
choices[1][1] = "were the children working hard and happy";
choices[1][2] = "were the children disruptive and loud";
choices[1][3] = "did the children like their teacher";
answers[1] = choices[1][1];

questions[2] = "3) At number 13, what is meant by ‘informal environment’?";
choices[2] = new Array();
choices[2][0] = "a very hostile environment ";
choices[2][1] = "friendly place";
choices[2][2] = "a strict place";
choices[2][3] = "an unfriendly place";
answers[2] = choices[2][1];

questions[3] = "4) At number 15, what is meant by ‘strict criteria’?";
choices[3] = new Array();
choices[3][0] = "something very important";
choices[3][1] = "something not important";
choices[3][2] = "precise and fixed rules for testing something";
choices[3][3] = "something that can be changed";
answers[3] = choices[3][2];

questions[4] = "5) At number 19, what is meant by ‘grounds to appeal’?";
choices[4] = new Array();
choices[4][0] = "good reasons to disagree against something";
choices[4][1] = "to agree with something";
choices[4][2] = "changing your child’s school";
answers[4] = choices[4][0];

questions[5] = "6) At number 21, what is meant by ‘there’s a few routes really’?";
choices[5] = new Array();
choices[5][0] = "not many choices";
choices[5][1] = "different roads to take";
choices[5][2] = "a number of different options";
choices[5][3] = "lots of choices";
answers[5] = choices[5][2];

questions[6] = "7) At number 25, what is meant by ‘planned the curriculum’?";
choices[6] = new Array();
choices[6][0] = "planned what the children will have for lunch";
choices[6][1] = "planned what subjects and topics will be taught";
choices[6][2] = "planned who should be the new headmaster";
choices[6][3] = "planned extra out of class teaching";
answers[6] = choices[6][1];

questions[7] = "8) At number 28, what is meant by ‘how long is a piece of string’?";
choices[7] = new Array();
choices[7][0] = "how long something is";
choices[7][1] = "a very difficult question to answer";
choices[7][2] = "a very easy question to answer";
choices[7][3] = "how old something is";
answers[7] = choices[7][1];

questions[8] = "9) At number 30, what is meant by ‘harassment allegations’?";
choices[8] = new Array();
choices[8][0] = "someone who is accused of being a nuisance / creating problems";
choices[8][1] = "someone who has a criminal record";
choices[8][2] = "someone going to court";
choices[8][3] = "someone accused of stealing";
answers[8] = choices[8][0];

questions[9] = "10) At number 31, what is meant by ‘the authority’?";
choices[9] = new Array();
choices[9][0] = "the government";
choices[9][1] = "parents";
choices[9][2] = "the people in charge at the Education Authority";
choices[9][3] = "the head teacher";
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.";