Navigation How to write quizzes in XML Links/Help
 Quizzer


 Home

 Downloads

 Screenshots

 History

 FAQ

 License

All you have to do to make a quiz is make an XML file with tags similar to the following, so open up Notepad, or any other text editor and type in the following:

<quiz>
 <pair no="1">
  <question>The Alps form the border between France and ______.</question>
  <answer>Italy</answer>
 </pair>
</quiz>

The <quiz> tag is the root tag, which can be anything you want. The <pair no="1"> tag is required, and the no="1" attribute is the number of the question. The next pair would be no="2" and no="3" and so on. Then in each pair, you have two tags, <question> and <answer>. The question text will go into the <question> tag, and the answer text to the question will go into the <answer> tag. Note: Pairs must start with 1. Ex) <pair no="1"> is valid, <pair no="0"> is invalid. Here is another example.

<FrenchQuiz>
 <pair no="1">
  <question>The Alps form the border between France and ______.</question>
  <answer>Italy</answer>
 </pair>
 <pair no="2">
  <question>The _______ separates France from Germany.</question>
  <answer>Rhine River</answer>
 </pair>
</FrenchQuiz> 

Once you have your XML file completed, all you have to do is save it with an .xml extension. Then run Quizzer, click on the Open button, find the quiz file, and take the quiz! And that's all you have to do! The Quizzer is all set for you or someone else to take the quiz.


What is Quizzer?

How to write quizzes in XML

How to get the CVS sources

Quizzer Project Page







SourceForge.net