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

// To add more questions, just follow the format below.

questions[0] = "1) What is the main reason for 'information overload' recently becoming a mainstream problem? ";
choices[0] = new Array();
choices[0][0] = "the growth of the internet";
choices[0][1] = "the ease of publishing books";
choices[0][2] = "a faster-paced society";
choices[0][3] = "not all information is accurate";
answers[0] = choices[0][0];

questions[1] = "2) Why has the internet grown exponentially over the years? ";
choices[1] = new Array();
choices[1][0] = "More and more companies want a presence on the internet.";
choices[1][1] = "Mainstream media has used agressive advertising to drive people to the internet.";
choices[1][2] = "It is continually becoming easier to add pages to the internet.";
choices[1][3] = "The internet has become more stable and useable than it was before.";
answers[1] = choices[1][2];

questions[2] = "3) Why is it important to check multiple sources on the internet before accepting something as the truth? ";
choices[2] = new Array();
choices[2][0] = "the person who posted the information may have made errors";
choices[2][1] = "the person who posted the information may not know anything about the topic";
choices[2][2] = "all of the above.";
choices[2][3] = "none of the above; only trustworthy organizations make websites";
answers[2] = choices[2][2];

questions[3] = "4) Why is it that everyone tends to make a small list of websites that they frequent, instead of visiting a wide variety of websites every day? ";
choices[3] = new Array();
choices[3][0] = "They are making a conscious decision to save time.";
choices[3][1] = "They are worried about the accuracy of unknown websites, so do not want to waste time visiting sites they are unfamiliar with.";
choices[3][2] = "They have visited enough websites to create the best possible list of sites to frequent.";
choices[3][3] = "Their reading speed is holding them back from exploring a large variety of websites. ";
answers[3] = choices[3][3];

questions[4] = "5) True or false: In order to properly determine the best course of action, it is a good idea to consider information-gathering activities as exchanges of Time for Information. ";
choices[4] = new Array();
choices[4][0] = "True";
choices[4][1] = "False";
answers[4] = choices[4][0];

questions[5] = "6) Like in the example scenario from the article, if you wanted to build an airplane, and you didn't know how, what would be the best thing to do? Pick the choice that would let you build an airplane the fastest. ";
choices[5] = new Array();
choices[5][0] = "Ask people you know. Try to find someone who knows how to build an airplane. The fastest way to find information is to try to find an expert with the answers. ";
choices[5][1] = "Figure it out yourself. The fastest way to find information is to discover it yourself!";
choices[5][2] = "Get some books on 'how to make an airplane' and read them. The fastest way to find your information is to go directly to where you're sure the information lies.";
answers[5] = choices[5][2];

questions[6] = "7) The best way to handle information overload is to... ";
choices[6] = new Array();
choices[6][0] = "improve your reading skills.";
choices[6][1] = "improve your scanning skills.";
choices[6][2] = "improve your browsing skills.";
choices[6][3] = "improve your language skills.";
answers[6] = choices[6][0];

questions[7] = "8) One good example of a high-level reading skill is... ";
choices[7] = new Array();
choices[7][0] = "scan reading.";
choices[7][1] = "skip reading.";
choices[7][2] = "super reading.";
choices[7][3] = "speed reading.";
answers[7] = choices[7][3];

// response for getting 100%
response[0] = "Excellent work!";
// response for getting 90% or more
response[1] = "Not bad! You should be able to get 100%, though. Why don't you reset the quiz and try again?"
// response for getting 80% or more
response[2] = "Not bad! You should be able to get 100%, though. Why don't you reset the quiz and try again?";
// response for getting 70% or more
response[3] = "For this quiz, that is not a very good score. You should reset the quiz and see if you can get more answers right.";
// response for getting over 50%
response[4] = "For this quiz, that is not a very good score. You should reset the quiz and see if you can get more answers right.";
// response for getting 40% or more
response[5] = "At least you got some questions right... Try again?";
// response for getting 20% or more
response[6] = "That's not very good. Did you pay attention to the article before?";
// response for getting 10% or more
response[7] = "That's not good at all. Are you even trying?";
// response for getting 9% or less
response[8] = "That's unbelievably bad. Are you even trying?";
