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

questions[0] = "1) At number 2, what is meant by ‘first port of call’?";
choices[0] = new Array();
choices[0][0] = "the first place you should go to or look at";
choices[0][1] = "the first person you should talk to";
choices[0][2] = "the first person you should call";
choices[0][3] = "the first person you should gossip with";
answers[0] = choices[0][0];

questions[1] = "2) If you walk into an office looking for work, what would you say?";
choices[1] = new Array();
choices[1][0] = "have you got any vacancies";
choices[1][1] = "is there a job to be filled";
choices[1][2] = "is there an empty post";
choices[1][3] = "have you got any jobs to be filled";
answers[1] = choices[1][0];

questions[2] = "3) At number 19, what is not mentioned but should be included on a CV?";
choices[2] = new Array();
choices[2][0] = "your qualifications";
choices[2][1] = "the names and addresses of two referees";
choices[2][2] = "where you went to school";
choices[2][3] = "where you have worked";
answers[2] = choices[2][1];

questions[3] = "4) At number 27, what is meant by people ‘who can vouch for you’?";
choices[3] = new Array();
choices[3][0] = "people who will say bad things about you";
choices[3][1] = "people who will give you a job";
choices[3][2] = "referees who can say good things about you";
choices[3][3] = "somebody who will complete your application form";
answers[3] = choices[3][2];

questions[4] = "5) At number 33, what is meant by ‘face-to-face’?";
choices[4] = new Array();
choices[4][0] = "to talk to someone over the phone";
choices[4][1] = "confronting someone over an argument ";
choices[4][2] = "to talk to someone via email";
choices[4][3] = "to talk to someone in person, standing in front of you";
answers[4] = choices[4][3];

questions[5] = "6) At number 35, what is a ‘job description’?";
choices[5] = new Array();
choices[5][0] = "a piece of writing explaining what the job requires";
choices[5][1] = "a piece of writing explaining a start date";
choices[5][2] = "an application form";
answers[5] = choices[5][0];

questions[6] = "7) At number 38, what is meant by ‘trying to sell yourself’?";
choices[6] = new Array();
choices[6][0] = "putting a price on how much you are worth";
choices[6][1] = "persuading people to buy something from you";
choices[6][2] = "try to persuade people that you are best person for the job";
choices[6][3] = "begging for the job";
answers[6] = choices[6][2];

questions[7] = "8) At number 50, what is meant by ‘you are put on the spot’?";
choices[7] = new Array();
choices[7][0] = "you are made to stand on a circular shape";
choices[7][1] = "you have to be able to think quickly ";
choices[7][2] = "you have to jog quickly on the spot";
choices[7][3] = "you have to speak about something";
answers[7] = choices[7][1];

questions[8] = "9) At number 52, what is meant by ‘some kind of standing in your work’?";
choices[8] = new Array();
choices[8][0] = "that your job requires you to stand up";
choices[8][1] = "that you are a serious person and see the job as important";
answers[8] = choices[8][1];

questions[9] = "10) At number 54, what is meant by ‘you should not act pally’?";
choices[9] = new Array();
choices[9][0] = "you should not act childish";
choices[9][1] = "you should not bring friends to an interview";
choices[9][2] = "you should not say hello";
choices[9][3] = "you should not be too friendly";
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.";
