Difference between revisions of "MultipleSelectProblems"

From WeBWorK_wiki
Jump to navigation Jump to search
m
m
Line 32: Line 32:
 
<td style="background-color:#ccffcc;padding:7px;">
 
<td style="background-color:#ccffcc;padding:7px;">
 
<p>
 
<p>
In the initialization section of the file we need to include <code>PGchoicemacros.pl</code> and <code>PGanswermacros.pl</code> in our list of loaded macro files.
+
Initialization: We must load <code>PGchoicemacros.pl</code> and <code>PGanswermacros.pl</code>.
 
</p>
 
</p>
 
</td>
 
</td>
Line 76: Line 76:
 
<td style="background-color:#ffffcc;padding:7px;">
 
<td style="background-color:#ffffcc;padding:7px;">
 
<p>
 
<p>
In the problem set-up, we create a new checkbox multiple choice object with <code>new_checkbox_multiple_choice</code>, and then store the question and correct answer with the <code>qa</code> method. Other answers are specified as a list of arguments to the <code>extra</code> method. To force an answer (either a new extra answer, or the correct answer) to appear last in the list of options, use the <code>makeLast</code> method. All other answers will be scrambled when the multiple choice problem is shown to students.
+
Setup: Create a new checkbox multiple choice object with <code>new_checkbox_multiple_choice</code>, and then store the question and correct answer with the <code>qa</code> method. Other answers are specified as a list of arguments to the <code>extra</code> method. To force an answer (either a new extra answer, or the correct answer) to appear last in the list of options, use the <code>makeLast</code> method. All other answers will be scrambled when the multiple choice problem is shown to students.
 
</p>
 
</p>
 
</td>
 
</td>
Line 98: Line 98:
 
<td style="background-color:#ffcccc;padding:7px;">
 
<td style="background-color:#ffcccc;padding:7px;">
 
<p>
 
<p>
In the text section we print the question and answers.
+
Main Text: Print the question and answers.
 
</p>
 
</p>
 
</td>
 
</td>
Line 113: Line 113:
 
<td style="background-color:#eeccff;padding:7px;">
 
<td style="background-color:#eeccff;padding:7px;">
 
<p>
 
<p>
And we grade the problem with <code>checkbox_cmp</code>. We set <code>$showPartialCorrectAnswers = 0;</code> to hide the correct answers from students until they have answered everything correctly.
+
Answer Evaluation: Grade the problem with <code>checkbox_cmp</code>. We set <code>$showPartialCorrectAnswers = 0;</code> to hide the correct answers from students until they have answered everything correctly.
 
</p>
 
</p>
 
</td>
 
</td>

Revision as of 16:54, 27 October 2009

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.

Problem Techniques Index

PG problem file Explanation
DOCUMENT();  
loadMacros(
"PG.pl",
"PGbasicmacros.pl",
"PGchoicemacros.pl",
"PGanswermacros.pl"
);

Initialization: We must load PGchoicemacros.pl and PGanswermacros.pl.

# Make a new checkbox multiple choice
$cmc = new_checkbox_multiple_choice();
# $cmc now "contains" the checkbox multiple choice object. 

# Insert a question and matching answers in the q/a list
$cmc -> qa (
"Please select all expressions that are equivalent to \(e^{x^2 + 1/x}\).",  # question
"\( e^{x^2} e^{1/x} \)", # a correct answer
"\( e^{x^2} e^{x^{-1}} \)", # another correct answer                
"\( e^{ (x^3+1) / x } \)", # Use " ... " to enter a string and \( \) for math
# "All of the above",
# "None of the above", 
);
# If the only correct answer is "All of the above"
# or "None of the above", uncomment the 
# "All of the above" or "None of the above" string 
# above and remove all other correct answers from the list


# Insert some incorrect answers
$cmc -> extra(
"\( e^{ (x^2+1) / x } \)",
"\( e^{x^2} e^{-x} \)",
"\( e^{x^2} e^{-x} \)",
"\( \displaystyle \frac{ e^{x^2} }{ e^x } \)",
"\( e^{x^2} + e^{1/x} \)",
"\( e^{x^2} + e^{-x} \)",
);

# The next line can be uncommented.
# $cmc->makeLast("All of the above");

# Note that unlike match lists and select lists, you cannot call qa() again

Setup: Create a new checkbox multiple choice object with new_checkbox_multiple_choice, and then store the question and correct answer with the qa method. Other answers are specified as a list of arguments to the extra method. To force an answer (either a new extra answer, or the correct answer) to appear last in the list of options, use the makeLast method. All other answers will be scrambled when the multiple choice problem is shown to students.

TEXT(beginproblem());

# Print the text using $cmc->print_q() for the questions and
# $cmc->print_a() to print the answers.
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.

ANS(checkbox_cmp($cmc->correct_ans));

$showPartialCorrectAnswers = 0;

ENDDOCUMENT();

Answer Evaluation: Grade the problem with checkbox_cmp. We set $showPartialCorrectAnswers = 0; to hide the correct answers from students until they have answered everything correctly.

Problem Techniques Index