Difference between revisions of "CommentsForInstructors"
Jump to navigation
Jump to search
m |
m |
||
Line 30: | Line 30: | ||
<b>Answer Evaluation:</b> |
<b>Answer Evaluation:</b> |
||
Include the <code>COMMENT();</code> just before the <code>ENDDOCUMENT();</code> |
Include the <code>COMMENT();</code> just before the <code>ENDDOCUMENT();</code> |
||
+ | Comments are only visible when the PG file is viewed in the Library Browser, so students will not see them. |
||
</p> |
</p> |
||
</td> |
</td> |
Revision as of 18:24, 2 January 2010
Comments for Instructors: PG Code Snippet
This code snippet shows the essential PG code to include comments for instructors that are visible only when the PG file is viewed in the Library Browser. Note that this is an insertion, not a complete PG file. This code will have to be incorporated into the problem file on which you are working.
PG problem file | Explanation |
---|---|
ANS( $expr->cmp() ); COMMENT("This problem is not randomized."); ENDDOCUMENT(); |
Answer Evaluation:
Include the |