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

questions[0] = "1) At number 6, what is meant by ‘catch up with colleagues’?";
choices[0] = new Array();
choices[0][0] = "do photocopying for the rest of the teachers ";
choices[0][1] = "talk with the parents of the pupils ";
choices[0][2] = "make sure you start teaching at the same time as other teachers";
choices[0][3] = "talk to friends at work and share the latest information";
answers[0] = choices[0][3];

questions[1] = "2) At number 7, what is meant by ‘call the register’?";
choices[1] = new Array();
choices[1][0] = "checking which teachers arrived at work on time";
choices[1][1] = "calling out all the names of pupils in the whole school";
choices[1][2] = "call out all the pupils’ names in the class";
choices[1][3] = "seeing which parents brought their children to school";
answers[1] = choices[1][2];

questions[2] = "3) At number 7, what is meant by ‘whole school collective active worship’?";
choices[2] = new Array();
choices[2][0] = "an assembly to give out awards to the children";
choices[2][1] = "an event like parents evening ";
choices[2][2] = "everyone in the school praying and worshipping together";
choices[2][3] = "a reading task for the whole school to get involved with";
answers[2] = choices[2][2];

questions[3] = "4) At number 9, what is meant by ‘so that’s in a nutshell’?";
choices[3] = new Array();
choices[3][0] = "to say something in many words";
choices[3][1] = "to say something in a few words, quickly and short";
choices[3][2] = "to describe something to someone which may take a long time";
choices[3][3] = "to tell someone a long detailed story";
answers[3] = choices[3][1];

questions[4] = "5) At number 14, what is meant by ‘intercept parents somewhere along the way’?";
choices[4] = new Array();
choices[4][0] = "get parents involved with the children’s activities ";
choices[4][1] = "find parents when they enter the school";
choices[4][2] = "talk to parents during a normal school day but before parent’s evening";
answers[4] = choices[4][2];

questions[5] = "6) At number 14, what is meant by ‘pre-empt landing in a big shock on parents’ evening’?";
choices[5] = new Array();
choices[5][0] = "prevent parents from hearing bad news on parents’ evening";
choices[5][1] = "tell parents good news on parents’ evening";
choices[5][2] = "tell parents bad news on parents’ evening";
choices[5][3] = "make sure you tell parents all the negative news";
answers[5] = choices[5][0];

questions[6] = "7) At number 17, what is meant by ‘all round development’?";
choices[6] = new Array();
choices[6][0] = "the child develops in all areas - emotionally, physically and academically";
choices[6][1] = "how the child has developed their reading and writing skills ";
choices[6][2] = "the children performance in physical education";
choices[6][3] = "the child’s progression in areas such as interacting with other children";
answers[6] = choices[6][0];

questions[7] = "8) At number 27, what is meant by ‘reach a sort of plateau’?";
choices[7] = new Array();
choices[7][0] = "the child starts developing a lot quicker";
choices[7][1] = "the child reaches a level where they stop developing very quickly ";
choices[7][2] = "the child passes their exam";
choices[7][3] = "the child stops learning anymore";
answers[7] = choices[7][1];

questions[8] = "9) At number 27, what is meant by ‘progress isn’t as marked’?";
choices[8] = new Array();
choices[8][0] = "the children stop learning ";
choices[8][1] = "the teacher no longer observes the child’s progression ";
choices[8][2] = "how quickly they learn is no longer as obvious";
choices[8][3] = "how quickly they learn becomes more obvious ";
answers[8] = choices[8][2];

questions[9] = "10) At number 29, what is meant by ‘it definitely impacts most probably in their learning’?";
choices[9] = new Array();
choices[9][0] = "something that influences their learning; can be good or bad";
choices[9][1] = "something good that helps them to learn";
choices[9][2] = "something bad that stops them learning ";
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.";