//change 5 to the total number of questionsvar total=5var question=new Array()for (i=1;i<=total+1;i++){temp="choice"+i+"=new Array()"eval(temp)}var solution=new Array()/*Below lists the phrases that will be randomly displayed if the user correctly answers the question. You may extend or shorten this list as desired*/var compliments=new Array()compliments[0]="Excellent!"compliments[1]="Wow, you're really rocking!"compliments[2]="You must have studied hard. Good job!"compliments[3]="Right on."compliments[4]="Correct!"compliments[5]="Great Job!"compliments[6]="Good work!"/*Below lists the questions, its choices, and finally, the solution to each question. Folow the exact format below when editing the questions. You may have as many questions as needed. Check doc at http://javascriptkit.com/script/script2/comboquiz.htm for more info*/question[1]="Information Literacy can be defined as:"choice1[1]="The ability to employ information to think critically about an issue"choice1[2]="The ability to define information need"choice1[3]="The ability to evaluate information"choice1[4]="All of the Above"question[2]="An example of how faculty can support information literacy efforts is to…."choice2[1]="TRUE"choice2[2]="FALSE"question[3]="To successfully implement information literacy standards into the classroom setting faculty should learn:"choice3[1]="How the library is physically laid out"choice3[2]="How to Be cognizant of the latest research materials (reference tools) and databases in their discipline. "choice3[3]="How to use internet resources in their classes"choice3[4]="How to catch students that plagiarize"question[4]="Information literacy is important because"choice4[1]="It is a tool students can use to develop critical thinking skills"choice4[2]="It provides a basis for skills needed in today’s marketplace"choice4[3]="It enables students to transfer knowledge in the classroom setting to all types of real life situations"choice4[4]="All of the above"question[5]="An example of how accessing information has changed would be"choice5[1]="Finding books requires knowledge of keywords used on a topic, and the ability to use a computer."choice5[2]="Finding primary documents is almost exclusively limited to specialized bibliographies and literature searches performed by librarians or found within references in journal articles."choice5[3]="Everything useful is available on the internet"choice5[4]="Students must evaluate and select more resources to use when doing research papers"solution[1]="d"solution[2]="a"solution[3]="b"solution[4]="d"solution[5]="a"
