Register Login
Internet / AI Technology University (ITU/AITU)
Created by info@itofthefuture.com
Welcome Anonimous.User to this quiz related to Speech.

Read the question and choose correct answers. Time is limited to 40 seconds!

Important! Do not forget to rank the quality of the question (from bad to excellent).
An initiator of the quiz will get royalty score for QnAs created by her/him and can win the Top Creativity Prize.
Question:
speech/hammer.swfThe computer in a new federation starship is supposed to have a lingual
interface. You are responsible for implementing the following feature:
When someone shouts "help" one or more times or when someone calls
"sickbay" the sickbay an alert must be triggered in sickbay. The
command to trigger this alert is "medicalEmergency". How would you do
it? (Identify all correctly formatted JSGF files that react on the speech
input "sickbay" and alternatively on one or more calls of "help".)

#JSGF V1.0;
grammar com.javaschool.medical;
public help help* | sickbay = <medicalEmergency>;



#JSGF V1.0;
grammar com.javaschool.medical;
public <medicalEmergency> = <helpcall> | <sickbaycall>
<helpcall> = help*;
<sickbaycall> = sickbay;



#JSGF V1.0;
grammar com.javaschool.medical;
public <medicalEmergency> = help+ | sickbay;



#JSGF V1.0;
grammar com.javaschool.medical;
public help* | sickbay = <medicalEmergency>;



#JSGF V1.0;
grammar com.javaschool.medical;
public <medicalEmergency> = help help* | sickbay;



#JSGF V1.0;
grammar com.javaschool.medical;
public help+ = <medicalEmergency>;
public sickbay = <medicalEmergency>;



#JSGF V1.0;
grammar com.javaschool.medical;
public <medicalEmergency> = help* | sickbay;



#JSGF V1.0;
grammar com.javaschool.medical;
public <helpcall> | <sickbaycall> = <medicalEmergency>;
help+ = <helpcall>;
sickbay = <helpcall>;



#JSGF V1.0;
grammar com.javaschool.medical;
public <medicalEmergency> = <helpcall> | <sickbaycall>
<helpcall> = help+;
<sickbaycall> = sickbay;



#JSGF V1.0 ISO8859-5;
grammar com.javaschool.medical;
public <medicalEmergency> = <helpcall> | <sickbaycall>
<helpcall> = help help*;
<sickbaycall> = sickbay;



Rank the Quality of the Question from "-10" (bad) or "0" (not clear) to 10 (correct) or even 20 (very good!)
-10 (bad/wrong) 0 (not clear) 10 (correct) 20 (very good!)
Your summary report will be available to you and your instructor. Thank you for your work!!!