Scaffolding2: Difference between revisions
Jump to navigation
Jump to search
Paultpearson (talk | contribs) mNo edit summary |
Paultpearson (talk | contribs) No edit summary |
||
Line 118: | Line 118: | ||
</pre> | </pre> | ||
</td> | </td> | ||
<td style="background-color:# | <td style="background-color:#ddffdd;padding:7px;"> | ||
<p> | <p> | ||
<b>Solution:</b> | <b>Solution:</b> |
Revision as of 04:29, 8 June 2015
Deprecated: Sequentially Revealed (Scaffolded) Problems

This PG code shows how to create multi-part questions that hide from students parts that have not yet been answered correct.
- PGML location in OPL: FortLewis/Authoring/Templates/Misc/Scaffolding2_PGML.pg
PG problem file | Explanation |
---|---|
Problem tagging: |
|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "scaffold.pl", "PGML.pl", "PGcourse.pl", ); TEXT(beginproblem()); |
Initialization: Use scaffold.pl. |
Context("Numeric"); |
Setup: For randomization, etc. |
Scaffold::Begin(); Section::Begin("Part 1: The first part"); BEGIN_PGML This is the text for part 1. [` 1+1 = `] [_________]{"2"} END_PGML Section::End(); Section::Begin("Part 2: The second part"); BEGIN_PGML This is text for the second part. [` 2 * 2 = `] [_________]{"4"} END_PGML Section::End(); Section::Begin("Part 3: The third part"); BEGIN_PGML This is text for the third part. [` 1 + 2 + 4 = `] [_________]{"7"} END_PGML Section::End(); Scaffold::End(); |
Main text:
Each |
BEGIN_PGML_SOLUTION Solution explanation goes here. END_PGML_SOLUTION COMMENT('MathObject version. Uses PGML.'); ENDDOCUMENT(); |
Solution: Optional solution section. |