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 ‘university-wide sort of responsibility’?";
choices[0] = new Array();
choices[0][0] = "being responsible for only a small section of the university";
choices[0][1] = "being responsible for the whole university";
choices[0][2] = "being responsible for the whole college";
choices[0][3] = "being responsible for many universities around the world";
answers[0] = choices[0][1];

questions[1] = "2) At number 8, what is meant by ‘I head up a small team’?";
choices[1] = new Array();
choices[1][0] = "gathers a team of students together";
choices[1][1] = "do all the thinking for a team of people";
choices[1][2] = "in charge of a small team";
choices[1][3] = "the most important person in a small team";
answers[1] = choices[1][2];

questions[2] = "3) At number 10, what is meant by ‘grass root level’?";
choices[2] = new Array();
choices[2][0] = "people at an ordinary, common level";
choices[2][1] = "people with many qualifications ";
choices[2][2] = "people with lots of knowledge ";
choices[2][3] = "beginners in life";
answers[2] = choices[2][0];

questions[3] = "4) At number 14, what is meant by ‘outreach work’?";
choices[3] = new Array();
choices[3][0] = "staying within the community you live in ";
choices[3][1] = "work that is very hard to complete ";
choices[3][2] = "working with friends and family ";
choices[3][3] = "going out into communities and distant places";
answers[3] = choices[3][3];

questions[4] = "5) At number 14, what is meant by ‘taster day type activities’?";
choices[4] = new Array();
choices[4][0] = "a day when people can come and taste different foods";
choices[4][1] = "a day when people can come and see what it is like at university";
choices[4][2] = "a day when people can come and exercise";
answers[4] = choices[4][1];

questions[5] = "6) At number 36, what is meant by ‘a whole host of events’?";
choices[5] = new Array();
choices[5][0] = "a lot of different events";
choices[5][1] = "a small number of events going on";
choices[5][2] = "events running for many days";
choices[5][3] = "events for many people";
answers[5] = choices[5][0];

questions[6] = "7) At number 40, what is meant by ‘totally mingled in with our host sort of students’?";
choices[6] = new Array();
choices[6][0] = "foreign students didn’t like being with other students";
choices[6][1] = "foreign students liked being with our traditional type of students";
answers[6] = choices[6][1];

questions[7] = "8) At number 47, what is meant by ‘feeling more part of something’?";
choices[7] = new Array();
choices[7][0] = "feeling you belong to two countries";
choices[7][1] = "feeling you don’t belong to the university community";
choices[7][2] = "feeling that you belong to the university community";
answers[7] = choices[7][2];

questions[8] = "9) At number 51, what is meant by ‘a bit on the edge’?";
choices[8] = new Array();
choices[8][0] = "feeling welcomed and loved";
choices[8][1] = "feeling you are on the outside, you don’t belong";
choices[8][2] = "feeling you belong in the group ";
choices[8][3] = "feeling a bit scared and anxious ";
answers[8] = choices[8][1];

questions[9] = "10) Which is the best description of Inderjeet’s job?";
choices[9] = new Array();
choices[9][0] = "helps traditional students to join the university ";
choices[9][1] = "helps international students join the university";
choices[9][2] = "helps non-traditional students to join the university";
choices[9][3] = "helps people find work ";
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.";