Mallard Tutorial for the College of Commerce Business Administration

This tutorial will guide you through the creation of several simple questions and ultimately a quiz.
 
The first question
We will start by writing a simple multiple choice question.

Interest paid or computed on the original principal only is:
<input type=Multiple_choice>
compound
derivative
simple
none of the above
</input>
<answer>
3
</answer>
 
The second question
Start at the mallard home page, by clicking on the house icon in the left icon bar. Interest computed on the sum of an original principal
and accrued interest is:
<input type=multiple_choice>
compound
derivative
simple
none of the above
</input>
<answer>
1
</answer>
 
Adding Parameters to questions
Parameters determine how a question will appear and behave. We will now add a parameter to the second question to make the choices appear in random order. <param shuffle=yes>  
Writing an Arithmetic question
One of Mallard's great features is its ability to handle arithmetic questions. Lanny Arvan opens up a savings account with $1,000.
The bank pays 5% interest each year compounded each month.
If the account is inactive for a year, what will his balance
be at the end of this period?
<input type=arith>
<param tolerance=1%>
</input>
<answer>
1000 * (1 + 0.05 / 12) ^ 12
</answer>
 
Multiple versions of a question
Mallard supports multiple versions of a single question. You should think of versions as testing the same knowledge. For instance, an appropriate version of the first question you wrote might be a fill in the blank question where the answer is simple interest. 1 version of question interest_wp already exists. Would you like to create version 2?  
Creating a Quiz
Now that we have some questions, we will create a quiz using these questions. Answer each question and then submit the quiz. The second question is worth twice as much as the first. Before Students can take your new quiz it must be finalized.  Once this quiz is finalized you can not change what questions the quiz uses, the weights of the questions, or the number of questions.  This ensures that all students will see the same quiz.  You can still edit the questions that the quiz uses in case you find a problem.  
Making the Quiz Available to Students
We now have a two question quiz. The first question will be on of our two multiple choice questions. The second one will be one of the two versions of our arithmetic problem. However, we must make the quiz available to students before they can take it. <quiz src='interest' title='' duedate='' status='invisible'>