Difference between revisions of "MultipleSelectProblems"
m |
m |
||
Line 36: | Line 36: | ||
<td style="background-color:#ccffcc;padding:7px;"> |
<td style="background-color:#ccffcc;padding:7px;"> |
||
<p> |
<p> |
||
− | Initialization: We must load <code>PGchoicemacros.pl</code> and <code>PGanswermacros.pl</code>. |
+ | <b>Initialization:</b> We must load <code>PGchoicemacros.pl</code> and <code>PGanswermacros.pl</code>. |
</p> |
</p> |
||
</td> |
</td> |
||
Line 63: | Line 63: | ||
<p> |
<p> |
||
<b>Setup:</b> |
<b>Setup:</b> |
||
− | Create a new checkbox multiple choice object <code>$cmc</code>with <code>$cmc->new_checkbox_multiple_choice();</code>. |
+ | Create a new checkbox multiple choice object <code>$cmc</code> with <code>$cmc->new_checkbox_multiple_choice();</code>. |
</p> |
</p> |
||
<p> |
<p> |
||
− | Use <code>$cmc->qa("question","correct answer 1","correct answer 2");</code> to store the question string and correct answer strings. Note that unlike match lists and select lists, you cannot call <code>qa( )</code> again. |
+ | Use <code>$cmc->qa("question","correct answer 1","correct answer 2");</code> to store the question string and correct answer strings. Note that unlike match lists and select lists, you cannot call <code>qa( )</code> again. If you include math symbols you should switch to LaTeX mode, possibly using <code>\displaystyle</code> and extra spacing <code>$BR</code> if necessary. For example, <code>$cmc->qa("question","\( x^2 \)$BR","\( \displaystyle \frac{x^2}{4-x} \)$BR");</code> |
</p> |
</p> |
||
<p> |
<p> |
Revision as of 16:00, 1 January 2010
Multiple Select Problems (or Checkbox Multiple Choice or Select All That Apply)
This code snippet shows the essential PG code to include multiple select question (or checkbox multiple choice or select all that apply) in a problem. A multiple choice question has only one correct answer, whereas a checkbox multiple choice question may require several items to be selected at the same time to be correct.
Note that in this example we use old-style checkbox multiple choice answer objects. The new-style MathObjects do not yet have a checkbox multiple choice answer object yet.
PG problem file | Explanation |
---|---|
DOCUMENT(); loadMacros( "PG.pl", "PGbasicmacros.pl", "PGchoicemacros.pl", "PGanswermacros.pl", "PGcourse.pl", ); TEXT(beginproblem()); |
Initialization: We must load |
$cmc = new_checkbox_multiple_choice(); $cmc -> qa ( "Select all expressions that are equivalent to " . "\( e^{x^2 + 1/x} \). There may be more than " . "one correct answer.", "\( e^{x^2} e^{1/x} \)", "\( e^{x^2} e^{x^{-1}} \)", "\( e^{ (x^3+1) / x } \)", ); $cmc -> extra( "\( \displaystyle \frac{ e^{x^2} }{ e^x } \)$BR", "\( e^{x^2} + e^{1/x} \)", ); # The next line can be uncommented. # $cmc->makeLast("All of the above"); |
Setup:
Create a new checkbox multiple choice object
Use
Incorrect answers are specified as a list of arguments to the
To force an answer (either a new extra answer, or the correct answer) to appear last in the list of options, use the $cmc->qa("question","None of the above");</code> $cmc->extra("very wrong 1","distractor 2","red herring 3"); $cmc->makeLast("None of the above");
To force answers to appear in a certain order (like Yes followed by No), use only @quest = ("question 1","question 2"); @ans = ("Yes","No"); $pick = random(0,1,1); $cmc->new_checkbox_multiple_choice(); $cmc->qa($quest[$pick],$ans[$pick]); $cmc->makeLast("Yes","No"); |
BEGIN_TEXT This is a place to insert additional text if you wish. $PAR \{ $cmc -> print_q() \} $PAR \{ $cmc -> print_a() \} END_TEXT |
Main Text: Print the question and answers. Print the question text using |
install_problem_grader(~~&std_problem_grader); $showPartialCorrectAnswers = 0; ANS(checkbox_cmp($cmc->correct_ans)); ENDDOCUMENT(); |
Answer Evaluation: Grade the problem with |