<Question Id= "I002" Text="Why do we use a windsock?" Answercount="4" Category="I" Level="B" Time="1" Reference="some book or website or extra info "> <Answer Score = "50" Id="1" Text="To indicate the wind direction"/> <Answer Score = "50" Id="2" Text="To give us an idea of the windspeed"/> <Answer Score = "10" Id="3" Text="To know where we are supposed to land"/> <Answer Score = "0" Id="4" Text="To indicate to other air traffic that flying activity is happening here"/> </Question> Important is the Text and Score items. And, if possible, a Reference and Picture/s.
The Id, Category, Level, Time items get assigned by whoever is in charge of the system.
A sample XML file that one can copy and use to fill in your own questions and answers.
And then email it off to whoever is in charge of the system to add your questions to the entire pool of questions and answers.
The XML format used ....
<?xml encoding="US-ASCII"?>
<!-- by Ulf -->
<!ELEMENT SAHPATest (Question+) >
<!ATTLIST SAHPATest Title CDATA #IMPLIED
Created CDATA #IMPLIED
>
<!ELEMENT Question (Answer+) >
<!ATTLIST Question ID CDATA #REQUIRED
Text
CDATA #REQUIRED
Answercount
CDATA #REQUIRED
Picture
CDATA #IMPLIED
Level
CDATA #IMPLIED
Category
CDATA #IMPLIED
Time
CDATA #IMPLIED
Reference
CDATA #IMPLIED >
<!ELEMENT Answer EMPTY >
<!ATTLIST Answer Score CDATA #REQUIRED
Id CDATA #REQUIRED
Text CDATA #REQUIRED
Picture CDATA #IMPLIED >