-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
DOCUMENT(); | ||
|
||
loadMacros( | ||
"PGstandard.pl", | ||
"MathObjects.pl", | ||
"PGML.pl", | ||
); | ||
|
||
TEXT(beginproblem()); | ||
|
||
###################################### | ||
|
||
Context("LimitedNumeric"); | ||
|
||
|
||
|
||
###################################### | ||
|
||
|
||
BEGIN_PGML | ||
## Entering an Answer and Reading Feedback ## | ||
|
||
Hello and welcome to the WeBWorK orientation. | ||
|
||
Most of the time, you will be using WeBWorK to submit answers to questions. Answers will typically either be numbers or expressions. | ||
|
||
Let's start off simple. What is the value of [`2+2`] ? Type your answer in the box below, but be patient and keep reading below. | ||
|
||
[_______]{Real(4)} | ||
|
||
Below, you have two buttons available: _Preview Answers_ and _Check Answers_. | ||
1. Push the _Check Answers_ button, and see that you have the right answer. | ||
2. Try typing in a number that is wrong and pushing the _Check Answers_ button. | ||
3. Sometimes you might completely misunderstand a question and your answer is way off base. WeBWorK will try to make you see this. Try typing in the expression [`x`] as the answer and pushing the _Check Answers_ button. In the box above, _read the feedback message_ that arises. Do you understand what that feedback message is saying and how it applies to your answer? | ||
|
||
As you use WeBWorK and inevitably get some questions wrong on your first attempt, make sure that you read the feedback messages. | ||
|
||
If you are ready, move on to the next problem in this orientation. You my either use the _Next_ button above, or directly click on _Problem 2_ to the left. | ||
|
||
|
||
END_PGML | ||
|
||
|
||
###################################### | ||
|
||
|
||
|
||
ENDDOCUMENT(); | ||
|