// enter the number of question
numQuestion=10

// declare multidimensional array to store questions, choices, and answers
Question = new Array();
ChoiceA = new Array();
ChoiceB = new Array();
ChoiceC = new Array();
ChoiceD = new Array();
ChoiceE = new Array();
Answer = new Array();

// data, this is the part that need to be modified
Question[0]='Learning about the Web will require approximately two hours daily.'
ChoiceA[0]='True'
ChoiceB[0]='False'
Answer[0]='A'

Question[1]="The WebSys course has five projects and six tests."
ChoiceA[1]='True'
ChoiceB[1]='False'
Answer[1]="B"

Question[2]='If you miss a test your average test score will be used.'
ChoiceA[2]='True'
ChoiceB[2]='False'
Answer[2]='B'

Question[3]='What resources can you use during WebSys tests?'
ChoiceA[3]='Text books'
ChoiceB[3]='Web sites'
ChoiceC[3]='Class notes'
ChoiceD[3]='All of the above'
ChoiceE[3]='None of the above'
Answer[3]='D'

Question[4]='All WebSys pages are long. Why?'
ChoiceA[4]='Searching for information is easier and faster'
ChoiceB[4]='Printing everything on one topic is quicker'
ChoiceC[4]='All of the above'
ChoiceD[4]='None of the above'
Answer[4]='C'

Question[5]='Which items are part of the WebSys pages?'
ChoiceA[5]='Page menu'
ChoiceB[5]='Page name'
ChoiceC[5]='Page number'
ChoiceD[5]='All of the above'
ChoiceE[5]='None of the above'
Answer[5]='D'

Question[6]='How can you navigate to the top of a WebSys page?'
ChoiceA[6]='Click a heading'
ChoiceB[6]='Press PageUp three times'
ChoiceC[6]='Press Ctrl-Shift-Home'
Answer[6]='A'

Question[7]='The PageDown key can be used instead of...'
ChoiceA[7]='Vertical scrolling'
ChoiceB[7]='Horizontal scrolling'
Answer[7]='A'

Question[8]='WebSys pages are numbered because of...'
ChoiceA[8]='the learning sequence'
ChoiceB[8]='improved communication'
ChoiceC[8]='tradition, pages should be numbered'
ChoiceD[8]='All of the above'
Answer[8]='D'

Question[9]='WordPad is required for the course'
ChoiceA[9]='True'
ChoiceB[9]='False'
Answer[9]='B'