This is an old revision of the document!
Each magtest manages a set of question that needs collecting a score for each output category when the user answers.
the question list allows managing questions.
Programming questions will depend on the answer mode.
If “single answer” is off, the student is proposed an assertion for each output category. The student will have to choose “one of” the available assertions as an answer. The weight of the answer will be added to its corresponding category score, and none to the other categories.
If “single answer” is on, the student only has to answer “yes” or “no” (or click the answer checkbox). when a question is marked for answer, the weights of each answer is added to their respective category score tracks. If the question is not marked, no score will be added to any category track.
You can import questions using a simple CSV file respecting the following format:
Import file must be UTF8 encoded, separated with “;”, one question per line and have one first column for question text.
If singlechoice options is on, next columns are weights (integer) for each category in category order.
If singlechoice is off, next columns must feed in order : answer text, weight (1 if unweighted), and helpertext for each category in order.