// 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]='What does XHTML stand for?'
ChoiceA[0]='eXtensible HyperText Markup Language'
ChoiceB[0]='eXtraordinary HyperText Markup Language'
ChoiceC[0]='eXtensive HyperText Markup Language'
ChoiceD[0]='eXtended HyperText Markup Language'
Answer[0]='A'

Question[1]='Which is not a markup guideline for XHTML?'
ChoiceA[1]='Markup as if for a sightless user who will hear it'
ChoiceB[1]='Markup the content of your material'
ChoiceC[1]='Markup for font and color changes, underlining, bolding, italicizing'
ChoiceD[1]='Markup the content of your material'
Answer[1]='C'

Question[2]='XHTML is case sensitive.'
ChoiceA[2]='True'
ChoiceB[2]='False'
Answer[2]='A'

Question[3]='Which of the following elements is deprecated from XHTML?'
ChoiceA[3]='&lt\;b&gt\;'
ChoiceB[3]='&lt\;br&gt\;'
ChoiceC[3]='&lt\;em&gt\;'
ChoiceD[3]='&lt\;kbd&gt\;'
Answer[3]='A'

Question[4]='Which of the following illustrates proper nesting?'
ChoiceA[4]='XHTML &lt;em&gt;signifies the &lt;strong&gt;separation&lt;/em&gt; of content &lt;/strong&gt;markup from appearance markup.'
ChoiceB[4]='XHTML signifies the &lt;strong&gt;separation of &lt;em&gt;content markup from appearance&lt;/strong&gt; markup&lt;/em&gt;.'
ChoiceC[4]='XHTML signifies the &lt;strong&gt;separation&lt;/strong&gt; of &lt;emphasis&gt;content&lt;/emphasis&gt; markup from appearance markup.'
Answer[4]='C'

Question[5]='What is CSS used for?'
ChoiceA[5]='Classifying and coding the content of pages'
ChoiceB[5]='Creating other languages'
ChoiceC[5]='Enhancing the appearance of pages'
ChoiceD[5]='Performing programming logic'
Answer[5]='C'

Question[6]='Which is not a characteristic of XHTML?'
ChoiceA[6]='Tag and attribute names must be in lower case'
ChoiceB[6]='Elements do not have to nest and may overlap'
ChoiceC[6]='Empty elements must be terminated'
ChoiceD[6]='All tags must be closed'
Answer[6]='B'

Question[7]='Which is correct XHTML for emphasis?'
ChoiceA[7]='&lt\;Em&gt\;&lt\;/Em&gt\;'
ChoiceB[7]='&lt\;EM&gt\;&lt\;/EM&gt\;'
ChoiceC[7]='&lt\;em&gt\;&lt\;/em&gt\;'
ChoiceD[7]='&lt\;EM&gt\;&lt\;/em&gt\;'
Answer[7]='C'

Question[8]='HTML will be replaced by XHTML.'
ChoiceA[8]='True'
ChoiceB[8]='False'
Answer[8]='A'

Question[9]='Which is correct XHTML for a line break?'
ChoiceA[9]='&lt\;BR/&gt\;'
ChoiceB[9]='&lt\;br/&gt\;'
ChoiceC[9]='&lt\;BR /&gt\;'
ChoiceD[9]='&lt\;br /&gt\;'
Answer[9]='D'
