{{ extends 'global/Page.html' }} {{ block title }}Answers{{ endblock }} {{ block content }}

Suppose that the round with {{ C.EXAMPLE }} is selected in the payment stage.
Note: In Task A, remind that Option A is choosing the product and Option B is choosing the money.

Scenario 1. Suppose that your switch point is $5.02 and the randomly selected question number is #185.

(a) At Question #185, the dollar value for Option B is $1.85.
{{ if player.quiz_1a == "True"}} Correct: The answer is True.
{{ else }} Incorrect: The correct answer is True.
{{ endif }}

(b) What is the chosen option in Scenario 1?
{{ if player.quiz_1b == "A" }} Correct: The answer is Option A.
{{ else }} Incorrect: The correct answer is Option A.
{{ endif }}

(c) The final payment in Scenario 1 is {{ C.EXAMPLE }}.
{{ if player.quiz_1c == "True"}} Correct: The answer is True. {{ else }} Incorrect: The correct answer is True. {{ endif }}


Scenario 2. Suppose that your switch point is $6.56 and the randomly selected question number is #766.

(a) At Question #766, the dollar value for Option B is $1.85.
{{ if player.quiz_2a == "False" }} Correct: The answer is False. The correct dollar value for Option B is $7.66.
{{ else }} Incorrect: The correct answer is False. The correct dollar value for Option B is $7.66.
{{ endif }}

(b) At Question #766, what is the chosen option in Scenario 2?
{{ if player.quiz_2b == "B" }} Correct: The answer is Option B.
{{ else }} Incorrect: The correct answer is Option B.
{{ endif }}

(c) The final payment in Scenario 2 is $7.66.
{{ if player.quiz_2c == "True"}} Correct: The answer is True. {{ else }} Incorrect: The correct answer is True. {{ endif }}


Please click the "Start Task A" button below to continue.

{{ endblock }}