var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();




questions[0] = "1) What will have been installed by the end of 2012 at Worldwide Communications Solutions?";
choices[0] = new Array();
choices[0][0] = "Optic fiber in all major cities";
choices[0][1] = "Videoconferencing in all major cities";
choices[0][2] = "Routers in every office";
answers[0] = choices[0][0];

questions[1] = "2) How much will the man in the listening have done in overtime by the end of the year?";
choices[1] = new Array();
choices[1][0] = "40 hours";
choices[1][1] = "200 hours";
choices[1][2] = "400 hours";
answers[1] = choices[1][2];

questions[2] = "3) Why is the company in reading II having problems?";
choices[2] = new Array();
choices[2][0] = "Management is responsible.";
choices[2][1] = "They have problems with legacy technologies.";
choices[2][2] = "They are currently installing fiber optics.";
answers[2] = choices[2][1];

questions[3] = "4) How much will consumer demand have grown by 2012?";
choices[3] = new Array();
choices[3][0] = "20%";
choices[3][1] = "200%";
choices[3][2] = "700%";
answers[3] = choices[3][2];

questions[4] = "5) Which equipment is not mentioned to be installed by the end of next quarter?";
choices[4] = new Array();
choices[4][0] = "Fiber optic cable";
choices[4][1] = "New routers";
choices[4][2] = "New video monitors";
answers[4] = choices[4][2];

questions[5] = "6) Where will management be looking to acquire production plants at Worldwide Communications?";
choices[5] = new Array();
choices[5][0] = "Europe";
choices[5][1] = "South America";
choices[5][2] = "Asia";
answers[5] = choices[5][2];

questions[6] = "7) Where will the man in the listening be presenting next week?";
choices[6] = new Array();
choices[6][0] = "In London";
choices[6][1] = "In Amsterdam";
choices[6][2] = "In New York";
answers[6] = choices[6][1];

questions[7] = "8) Why does Worldwide Communications want to incorporate the latest technology?";
choices[7] = new Array();
choices[7][0] = "To spend current resources before the end of the fiscal year";
choices[7][1] = "To ensure economy of operation";
choices[7][2] = "To exceed production capability";
answers[7] = choices[7][1];

questions[8] = "9) When will the new expansion have been completed?";
choices[8] = new Array();
choices[8][0] = "By the end of next month";
choices[8][1] = "By the end of next quarter";
choices[8][2] = "By the end of the year";
answers[8] = choices[8][2];

questions[9] = "10) Which plants  is suggested as an acquisition target for Worldwide Communications?";
choices[9] = new Array();
choices[9][0] = "Plants in China";
choices[9][1] = "Plants in Romania";
choices[9][2] = "Plants in Taiwan";
answers[9] = choices[9][2];





// response for getting 100%
response[0] = "Excellent, top marks!";
// response for getting 90% or more
response[1] = "Excellent, try again to get 100%!"
// response for getting 70% or more
response[2] = "Well done, that is a good score, can you do better?";
// response for getting over 50%
response[3] = "Nice one, 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] = "That was pretty poor!  Try again to improve!";
// response for getting 9% or less
response[7] = "Oh dear, I think you need to go back to school (or try again)!";