Question 1
In the following mixed initiative grammar:

<grammar type="application/srgs+xml" version="1.0" xml:lang = "en" root="get_order">
<rule id = "get_order" scope = "public">
_______________
</rule>
<rule id = "place" scope = "public">
<one-of>
<item>Malaysia <tag> quantity = "Malaysia"</tag></item>
<item>Thailand <tag> quantity = "Thailand" </tag></item>
</one-of>
</rule>
<rule id = "traveller" scope = "public">
<one-of>
<item>five <tag>No_Traveller= "5" </tag> </item>
<item> ten<tag>No_Traveller= "10" </tag> </item>
</one-of>
</rule>
</grammar>

Which of the following should be placed in the empty bracket?
A. <item><ruleref uri = "#place"/></item>
B. <item><ruleref uri = "#traveller"/></item>
C. <one-of> <item><ruleref uri = "#place"/></item>
<item><ruleref uri = "#traveller"/></item>
</one-of>
D. <item><ruleref uri = "#place"/></item>
<item> <ruleref uri = "#traveller"/></item>

Question 2
Modify the following prompt using SSML tag to play "Professor Ben has quit his profession"
<prompt>
     Prof. Ben has quit his Prof.
</prompt>
A.     <prompt> 
            <sub alias = "professor"> Prof. </sub> Ben has quit his <sub alias = "Profession">Prof. </sub>
         </prompt>
B.    <prompt>
                <sub alias = "Prof."> Professor </sub> Ben has quit his <sub alias = "Prof.>Profession </sub> 
        </prompt> 
C.    <prompt>
                 Professor Ben has quit his profession
        </prompt>
D. <prompt>
               <sub> Professor </sub> Ben has quit his <sub>profession </sub> 
     </prompt> 
 
Question 3 
Which of the following code fragments illustrate valid attributes of the <prosody> element?
A. <prosody pitch = "medium" range = "x-low" rate = "fast" emphasis = "loud"> 
               Good Morning, Welcome to Tomato Technologies
           </prosody>
B. <prosody pitch = "medium" range = "x-low" speed = "fast" emphasis = "loud">
               Good Morning, Welcome to Tomato Technologies
           </prosody>
C. <prosody pitch = "medium" range = "x-low" speed = "fast" volume = "loud">
               Good Morning, Welcome to Tomato Technologies
           </prosody>
D. <prosody pitch = "medium" range = "x-low" rate = "fast" volume = "loud">
               Good Morning, Welcome to Tomato Technologies
           </prosody> 
Question 4 
Given the following VoiceXML code fragment
<form>
      <block>Welcome to Flight information System, bulk bookings</block>
      <field name = "flight_number" type = "digits">
           <prompt> Please say the flight number </prompt>
      </field>
     <field name = "tickets" type = "digits">
          <prompt>How many tickets would you like to book? </prompt>
     </field>     
     <filled>
          <if cond = "tickets &lt; 10 "><clear namelist = "tickets"/>
               <prompt> We don't take tickets less than ten </prompt>
          </if>
     </filled>
</form>
Complete the following dialog: 
Computer: Welcome to Flight information System, bulk bookings. Please say the flight number
Human: 45476
Computer: How many tickets would you like to book?
Human: 4
__________?
A.  Computer: We don't take tickets less than ten. Welcome to Flight information System, bulk bookings.      Please say the flight number
B.  Computer: We don't take tickets less than ten. How many tickets would you like to book?
C.  Computer:  We don't take tickets less than ten. Please say the flight number
D.  Computer:  . How many tickets would you like to book?           
Question 5 
Please select the mandatory attribute in the <grammar> element?
A. type 
B. version
C. root
D. xml:lang