News
Index
Working with MUMIE as author
- Initial steps:
- Articles:
- Problems:
- Programming with Python
- Visualizations with JSXGraph
- Media Documents:
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
You're not logged in
Working with MUMIE as author
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
When the questions of a problem are grouped into question pools using the command \randomquestionpool, it is possible to also randomize the order in which the questions chosen from the pools are presented to the user.
This is done by the command \permutequestions
.
Example
Here you can see an example of 3 different questions which are put in two question pools which are permuted randomly by \permutequestions
.
The first pool contains questions 1 and 2. The second pool only contains question 3.
The student sees either the 1st or 2nd question and the 3rd question. The 3rd question might be shown as question a) or as question b).
12345678910111213141516171819202122 \begin{problem}
\randomquestionpool{1}{2}
\randomquestionpool{3}{3}
\permutequestions
% question 1
\begin{question}
...
\end{question}
% question 2
\begin{question}
...
\end{question}
% question 3
\begin{question}
...
\end{question}
\end{problem}
Another option is to choose k questions from a set of n question pools. As above, the questions of a problem have to be grouped in question pools using the command \randomquestionpool for this. Use \chooseRandomPools{k}
to define, how many question pools should be selected.
Example
A similar example as above, but this time with four questions and three question pools. The student will see two questions (in random order), either
12345678910111213141516171819202122232425262728 \begin{problem}
\randomquestionpool{1}{2}
\randomquestionpool{3}{3}
\randomquestionpool{4}{4}
\chooseRandomPools{2}
% question 1
\begin{question}
...
\end{question}
% question 2
\begin{question}
...
\end{question}
% question 3
\begin{question}
...
\end{question}
% question 4
\begin{question}
...
\end{question}
\end{problem}
Updated by Michael Heimann, 3 years, 1 month ago – ef656b9