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

questions[0] = "1) What is meant by 'from the perspective of the people'?";
choices[0] = new Array();
choices[0][0] = "from the values of the people";
choices[0][1] = "from the mind of the people";
choices[0][2] = "from the opinion of the people";
answers[0] = choices[0][2];

questions[1] = "2) What is meant by 'different walks of life'?";
choices[1] = new Array();
choices[1][0] = "people of different ages";
choices[1][1] = "people from different cultures";
choices[1][2] = "people who walk differently";
choices[1][3] = "people who have different lives";
answers[1] = choices[1][1];

questions[2] = "3) What is meant by 'doesn't just stand still'?";
choices[2] = new Array();
choices[2][0] = "someone who doesn't move";
choices[2][1] = "someone who likes to do lots of activities";
choices[2][2] = "someone who can't stand in a still position";
choices[2][3] = "someone who is always learning and developing";
answers[2] = choices[2][3];

questions[3] = "4) What is meant by 'expand their own awareness'?";
choices[3] = new Array();
choices[3][0] = "someone who want to be well educated";
choices[3][1] = "someone who likes to learn and understand new things";
choices[3][2] = "someone who wants to be very intelligent";
answers[3] = choices[3][1];

questions[4] = "5) What is meant by 'you want to expand beyond that'?";
choices[4] = new Array();
choices[4][0] = "you want to learn about different people";
choices[4][1] = "you should move outside the community you live in";
choices[4][2] = "you should stay within your community";
choices[4][3] = "you should try to make your community bigger";
answers[4] = choices[4][0];

questions[5] = "6) What is meant by 'really beneficial'?";
choices[5] = new Array();
choices[5][0] = "bad for you";
choices[5][1] = "good for you";
choices[5][2] = "okay";
choices[5][3] = "very good for you";
answers[5] = choices[5][3];

questions[6] = "7) What is meant by 'you can see that actively sort of happening'?";
choices[6] = new Array();
choices[6][0] = "you can see that people are good citizens";
choices[6][1] = "you can see that people are very active";
choices[6][2] = "you can see that people are learning and developing";
answers[6] = choices[6][2];

questions[7] = "8) What is meant by 'a two-way process'?";
choices[7] = new Array();
choices[7][0] = "something that develops in two different ways";
choices[7][1] = "something that is divided into two";
choices[7][2] = "something that benefits two or more people";
answers[7] = choices[7][2];

questions[8] = "9) What is meant by 'model for a wider citizenship'?";
choices[8] = new Array();
choices[8][0] = "the university has lots of citizens";
choices[8][1] = "the university is like a model of society";
choices[8][2] = "the university sets a good example of citizenship";
answers[8] = choices[8][2];

questions[9] = "10) What is meant by 'smashing'?";
choices[9] = new Array();
choices[9][0] = "not good";
choices[9][1] = "good";
choices[9][2] = "very good";
choices[9][3] = "excellent";
answers[9] = choices[9][3];


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