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

questions[0] = "1) Which statement is true?";
choices[0] = new Array();
choices[0][0] = "Major global trading systems are becoming less integrated.";
choices[0][1] = "Major global trading systems are becoming more integrated.";
choices[0][2] = "Major global trading systems are becoming hubs in Asia.";
answers[0] = choices[0][1];

questions[1] = "2) Which type of accelerating growth is NOT mentioned?";
choices[1] = new Array();
choices[1][0] = "Trade";
choices[1][1] = "Direct foreign-investment";
choices[1][2] = "Infrastructure";
answers[1] = choices[1][2];

questions[2] = "3) Which statement is true?";
choices[2] = new Array();
choices[2][0] = "Industry structures are becoming more international in nature.";
choices[2][1] = "Industry structures are becoming more domestic in nature.";
choices[2][2] = "Industry structures are mostly based in Western Europe.";
answers[2] = choices[2][0];

questions[3] = "4) Which type of strategies need to be developed?";
choices[3] = new Array();
choices[3][0] = "Domestic marketing strategies";
choices[3][1] = "Online trade strategies";
choices[3][2] = "International marketing strategies";
answers[3] = choices[3][2];

questions[4] = "5) Which passive sentence is correctly formed?";
choices[4] = new Array();
choices[4][0] = "That product must to be introduced in Asia.";
choices[4][1] = "That product must be introduced in Asia.";
choices[4][2] = "That product must is introduced in Asia.";
answers[4] = choices[4][1];

questions[5] = "6) Those issues ought to have been discussed earlier. =";
choices[5] = new Array();
choices[5][0] = "Those issues might have been discussed earlier.";
choices[5][1] = "Those issues should have been discussed earlier.";
choices[5][2] = "Those issues must have been discussed earlier.";
answers[5] = choices[5][1];

questions[6] = "7) What was the main problem for Book-by-Us.com?";
choices[6] = new Array();
choices[6][0] = "Too few visitors";
choices[6][1] = "Not enough clients";
choices[6][2] = "Too many visitors";
answers[6] = choices[6][2];

questions[7] = "8) What's the main problem for e-commerce sites?";
choices[7] = new Array();
choices[7][0] = "Customers prefer to go to physical locations.";
choices[7][1] = "Customers quickly get bored.";
choices[7][2] = "Customers quickly go to new sites.";
answers[7] = choices[7][2];

questions[8] = "9) Which type of agreements must be respected when launching a marketing campaign?";
choices[8] = new Array();
choices[8][0] = "Trade agreements";
choices[8][1] = "Licensing agreements";
choices[8][2] = "Retailer agreements";
answers[8] = choices[8][1];

questions[9] = "10) What can complicate the launch of a marketing campaign?";
choices[9] = new Array();
choices[9][0] = "Domestic franchises";
choices[9][1] = "International campaigns";
choices[9][2] = "Merchandising deals";
answers[9] = choices[9][1];





// 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)!";