// enter the number of question
numQuestion=16

// 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]='HTTP request and response is made up of...?'
ChoiceA[0]="Request/Response line"
ChoiceB[0]='HTTP Header'
ChoiceC[0]='HTTP Body'
ChoiceD[0]='B & C'
ChoiceE[0]='All of the above'
Answer[0]='E'

Question[1]='Which information is NOT contained in the Request Line?'
ChoiceA[1]='Method'
ChoiceB[1]='URL'
ChoiceC[1]='Head'
ChoiceD[1]='Version Number'
ChoiceE[1]='None of the above'
Answer[1]='C'

Question[2]='Which information is NOT contained in the Header?'
ChoiceA[2]='Entity'
ChoiceB[2]='General'
ChoiceC[2]='Request'
ChoiceD[2]='Head'
ChoiceE[2]='None of the above'
Answer[2]='D'

Question[3]='Which of the following stores information about the client settings and different types of acceptable information?'
ChoiceA[3]='Entity'
ChoiceB[3]='General'
ChoiceC[3]='Request'
ChoiceD[3]='Head'
ChoiceE[3]='None of the above'
Answer[3]='C'

Question[4]='What does the Response line return?'
ChoiceA[4]='The HTTP version number'
ChoiceB[4]='Whether or not the transfer was a success'
ChoiceC[4]='Neither A nor B'
ChoiceD[4]='A & B'
Answer[4]='D'

Question[5]='Which of the following methods is supported by HTTP?'
ChoiceA[5]='GET'
ChoiceB[5]='POST'
ChoiceC[5]='HEAD'
ChoiceD[5]='A & B'
ChoiceE[5]='All of the above'
Answer[5]='E'

Question[6]='A dynamic Web page is one generated on request with a set of instructions to create XHTML.'
ChoiceA[6]='True'
ChoiceB[6]='False'
Answer[6]='A'

Question[7]='What does this code mean? <br />&lt\;%@ Language=VBScript %&gt\;'
ChoiceA[7]='ASP is used instead of HTML'
ChoiceB[7]='VBScript is the scripting language being used'
ChoiceC[7]='Code will be processed on the server'
ChoiceD[7]='None of the above'
ChoiceE[7]='All of the above'
Answer[7]='B'

Question[8]='ASP is the ONLY technology through which instructions are written for generating dynamic XHTML code'
ChoiceA[8]='True'
ChoiceB[8]='False'
Answer[8]='B'

Question[9]='ASP codes must be enclosed within asp tags. &lt\;% ASP Statements %&gt\;.'
ChoiceA[9]='True'
ChoiceB[9]='False'
Answer[9]='A'

Question[10]='True or False: Any Host will be able to provide the software you need for server-side scripts.'
ChoiceA[10]='True'
ChoiceB[10]='False'
Answer[10]='B'

Question[11]='Which object does server VBScript use to write XHTML?'
ChoiceA[11]='request'
ChoiceB[11]='response'
ChoiceC[11]='document'
ChoiceD[11]='write'
Answer[11]='B'

Question[12]='Which of the following extensions indicate a scripted Web page?'
ChoiceA[12]='.html'
ChoiceB[12]='.htm'
ChoiceC[12]='.php'
ChoiceD[12]='Both A and B'
Answer[12]='C'

Question[13]='True or False: &lt;script&gt; tags can be embedded in files with a .asp extension only.'
ChoiceA[13]='True'
ChoiceB[13]='False'
Answer[13]='B'

Question[14]='Which of the following will cause a script to be executed on the server?'
ChoiceA[14]='&lt;% %&gt;'
ChoiceB[14]='&lt;script&gt;'
ChoiceC[14]='&lt;script runat = "server"&gt;'
ChoiceD[14]='Both A and C'
Answer[14]='D'

Question[15]='Both ASP and PHP are case sensitive.'
ChoiceA[15]='True'
ChoiceB[15]='False'
Answer[15]='B'