Difference between revisions of "PopUpListsLong"

From WeBWorK_wiki
Jump to navigation Jump to search
Line 1: Line 1:
<h2>Pop-Up Lists For Many Questions With Common Answers: PG Code Snippet</h2>
+
<h2>Pop-Up Lists For Many Questions With Common Answers</h2>
 
<p>
 
<p>
 
Often you may have many questions that have the same set of answers, such as a list of true or false questions, or a list of multiple choice questions in which the choices are the same for each question. This PG code allows takes the hassle out of creating such a PG problem by requiring only that you modify an array of questions and answers, the instructions for the student, and the list of choices for every question. To prevent students from being able to copy each other's answers verbatim, we shuffle the order of the questions. It is also possible to include random elements into each question (but not each answer, since the list of answers is a list of strings and needs to be the same for all questions).
 
Often you may have many questions that have the same set of answers, such as a list of true or false questions, or a list of multiple choice questions in which the choices are the same for each question. This PG code allows takes the hassle out of creating such a PG problem by requiring only that you modify an array of questions and answers, the instructions for the student, and the list of choices for every question. To prevent students from being able to copy each other's answers verbatim, we shuffle the order of the questions. It is also possible to include random elements into each question (but not each answer, since the list of answers is a list of strings and needs to be the same for all questions).
Line 5: Line 5:
   
 
<p style="background-color:#eeeeee;border:black solid 1px;padding:3px;">
 
<p style="background-color:#eeeeee;border:black solid 1px;padding:3px;">
<em>This code snippet shows the PG code to create lengthy pop-up lists in a WeBWorK problem. Note that these are <b>insertions</b>, not a complete PG file. This code will have to be incorporated into the problem file on which you are working. </em>
+
<em>This code shows how to create lengthy pop-up lists in a WeBWorK problem.</em>
 
</p>
 
</p>
   

Revision as of 23:33, 23 October 2009

Pop-Up Lists For Many Questions With Common Answers

Often you may have many questions that have the same set of answers, such as a list of true or false questions, or a list of multiple choice questions in which the choices are the same for each question. This PG code allows takes the hassle out of creating such a PG problem by requiring only that you modify an array of questions and answers, the instructions for the student, and the list of choices for every question. To prevent students from being able to copy each other's answers verbatim, we shuffle the order of the questions. It is also possible to include random elements into each question (but not each answer, since the list of answers is a list of strings and needs to be the same for all questions).

This code shows how to create lengthy pop-up lists in a WeBWorK problem.

Problem Techniques Index

PG problem file Explanation
DOCUMENT();

loadMacros(
  "PG.pl",
  "PGstandard.pl",
  "PGcourse.pl",
  "PGchoicemacros.pl",
);

TEXT(beginproblem);

Initialization: We need to include the PGchoicemacros.pl macro file.

$a = random(1,5,1);

@questions_and_answers = (
"True",  "Larry is one of the three stooges.",
"False", "Gandalf is one of the three stooges.",
"False", "\(\pi + $a\) is rational.",
);

@choices = ("True", "False");

Set-up: Create an array in which questions alternate with answers. Answers may be any string. For true or false questions, this is the only part of the example that needs to be modified. We added a randomized element to the question about pi. Do not use the names $numq, $qn, or $qns to avoid conflicts with the code below.

BEGIN_TEXT

Are the following statements true or false? 
$BR$BR

END_TEXT

Instructions and Question for all parts: You may modify the instructions if you want. You should explicitly say what all of the possible answers are so that students who have a pdf or a paper copy can work directly from it.

$numq = scalar(@questions_and_answers)/2; # $numq = number of questions
@shuffle = shuffle($numq);
@abc = (a..z); # or (A..Z) or (1..$numq)

for $qn (0..$numq-1) {   # $qn  = question number
my $qns = $shuffle[$qn]; # $qns = question number shuffled 
BEGIN_TEXT
@abc[$qn]. 
\{ pop_up_list(['?', @choices]) \} $SPACE 
$questions_and_answers[2*$qns+1]
$BR$BR
END_TEXT
ANS(str_cmp($questions_and_answers[2*$qns], filters=>["trim_whitespace","compress_whitespace"]));
}

ENDDOCUMENT(); 

Main Text and Answer Evaluation: You should not need to modify this section at all. We shuffle the order of the questions and use a for loop to generate one question and one answer evaluator for each pair in the array @questions_and_answers.

Problem Techniques Index