// 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]='URL stands for which of the following?'
ChoiceA[0]='Uniform resource location'
ChoiceB[0]='Uniform resource locator'
ChoiceC[0]='Unity relocation limit'
ChoiceD[0]='Unified relocation limiter'
Answer[0]='B'

Question[1]='How many major parts are in a typical URL?'
ChoiceA[1]='2'
ChoiceB[1]='3'
ChoiceC[1]='4'
ChoiceD[1]='None'
Answer[1]='C'

Question[2]='"www.hotmail.com" is known as the:'
ChoiceA[2]='Location on the Web server of the page you want'
ChoiceB[2]='Protocol used to access the server'
ChoiceC[2]='Domain name'
ChoiceD[2]='A and B'
Answer[2]='C'

Question[3]='Which of the following folders should be included in your root folder?'
ChoiceA[3]='db'
ChoiceB[3]='images'
ChoiceC[3]='scripts'
ChoiceD[3]='styles'
ChoiceE[3]='All of the above'
Answer[3]='E'

Question[4]='According to XHTML standards, it is okay to end files with extension ".htm"'
ChoiceA[4]='True'
ChoiceB[4]='False'
Answer[4]='B'

Question[5]='What is the default file that Web servers look for?'
ChoiceA[5]='default.htm'
ChoiceB[5]='default.html'
ChoiceC[5]='index.html'
ChoiceD[5]='index.htm'
Answer[5]='C'

Question[6]='Which of the following defines a correct sequence of events?<br />1. XHTML pages created in a text editor on your computer<br />2. XHTML pages created in a text editor on the Web server<br />3. XHTML pages tested on your computer<br />4. XHTML pages uploaded to the Web server<br />5. XHTML pages uploaded to your computer<br />6. XHTML pages downloaded to your computer'
ChoiceA[6]='1-3-4'
ChoiceB[6]='2-3-4'
ChoiceC[6]='1-3-6'
ChoiceD[6]='2-3-5'
Answer[6]='A'

Question[7]='Which of the following is an advantage of using mirror directories?'
ChoiceA[7]='Saves you time and hassle when marking up HTML'
ChoiceB[7]='Uploading is much less tedious'
ChoiceC[7]='Ease in moving files to another workstation (or disk drive), and when moving files to another server'
ChoiceD[7]='All of the above'
Answer[7]='D'

Question[8]='Which of the following HTML attributes are concerned with addresses?'
ChoiceA[8]='href'
ChoiceB[8]='src'
ChoiceC[8]='url'
ChoiceD[8]='None of the above'
ChoiceE[8]='A & B & C'
Answer[8]='E'

Question[9]='&lt;a href="info.html"&gt; gives users a hyperlink from index.html to another file named info.html:'
ChoiceA[9]='In the parent directory'
ChoiceB[9]='In the current directory'
ChoiceC[9]='In the root directory'
ChoiceD[9]='In the subdirectory named "info"'
Answer[9]='B'