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

questions[0] = "1) At number 1, what is meant by ‘assembly’?";
choices[0] = new Array();
choices[0][0] = "event after school for parents and carers to attend	";
choices[0][1] = "a meeting for the teachers to discuss work";
choices[0][2] = "something that takes place at the weekend involving teachers, pupils and parents ";
choices[0][3] = "a time in the morning when all the children come together in the school";
answers[0] = choices[0][3];

questions[1] = "2) At number 4, which is the best definition of a ‘charity’?";
choices[1] = new Array();
choices[1][0] = "a group of people who get paid to participate in events organised ";
choices[1][1] = "an organisation which raises money for people who already have possessions";
choices[1][2] = "an organisation created to help people who are in need or suffering";
choices[1][3] = "an organisation which tries to make money";
answers[1] = choices[1][2];

questions[2] = "3) Why are people asked to come to assemblies on Thursday?";
choices[2] = new Array();
choices[2][0] = "to talk about their job";
choices[2][1] = "to take part in a fundraising event ";
choices[2][2] = "to talk about their charity";
choices[2][3] = "to talk about how to stay safe";
answers[2] = choices[2][2];

questions[3] = "4) At number 5, what is meant by ‘we would nominate charities’?";
choices[3] = new Array();
choices[3][0] = "we would choose which charities should come to the school";
choices[3][1] = "we would put forward charities to compete in events to raise money";
choices[3][2] = "we would nominate which charity should organise the fundraising event";
choices[3][3] = "we would select which charity we like";
answers[3] = choices[3][0];

questions[4] = "5) At number 5, what is meant by ‘we would invite representatives’?";
choices[4] = new Array();
choices[4][0] = "we would ask people from a charity to come and talk";
choices[4][1] = "we would ask parents what they think";
choices[4][2] = "we would invite visitors ";
choices[4][3] = "we would invite the people in need of help to come and talk";
answers[4] = choices[4][0];

questions[5] = "6) At number 5, what is meant by ‘sell their wares’?";
choices[5] = new Array();
choices[5][0] = "persuade teachers to give money to charity";
choices[5][1] = "talk to people about their charity and what it does";
choices[5][2] = "sell wares";
choices[5][3] = "sell their products and say what they can offer ";
answers[5] = choices[5][1];

questions[6] = "7) At number 5, which is the best definition of ‘sponsor’?";
choices[6] = new Array();
choices[6][0] = "to give money to a child whether they complete the task or not";
choices[6][1] = "money given to a child to spend if they complete a task";
choices[6][2] = "promise to give money to a charity if the child completes a task ";
answers[6] = choices[6][2];

questions[7] = "8) At number 5, what is meant by ‘fundraising sheet and try and get sponsors’?";
choices[7] = new Array();
choices[7][0] = "a sheet which children take home and people write down home much money they will give";
choices[7][1] = "a sheet explaining how to find sponsors";
choices[7][2] = "a sheet telling parents what the children have to do";
choices[7][3] = "a sheet where you write what you have done";
answers[7] = choices[7][0];

questions[8] = "9) At number 6, what is meant by ‘extra PE sort of activity’?";
choices[8] = new Array();
choices[8][0] = "a charity event which requires academic work";
choices[8][1] = "a charity event with a class at the end";
choices[8][2] = "a charity event which requires Physical Exercise, a sport";
answers[8] = choices[8][2];

questions[9] = "10) In what ways does the school help to create a better community?";
choices[9] = new Array();
choices[9][0] = "people speaking about charities, a fundraising event and sponsor forms";
choices[9][1] = "assemblies every morning and PE activities ";
choices[9][2] = "having a variety of visitors in the school ";
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.";