{% extends "global/Page.html" %} {% load staticfiles otree %} {% block title %} Correct answers {% endblock %} {% block content %}

Take your time to revise the explanation if you got any wrong answer.

Select whether the sentence is true or false:

  1. Every task in Part 1 can earn me income if solved correctly: (True)
  2. You selected: {% if ans1 == 1 %}True. CORRECT. {% else %}False. INCORRECT. {% endif %} Every task correctly solved in Part 1 will earn you {{ Constants.q_points }} ECU.

  3. All three bonus questions in Part 2 will pay some additional income: (False)
  4. You selected: {% if ans2 == 0 %}False. CORRECT. {% else %} True. INCORRECT {% endif %} Only one of them (picked at random) will be paid, adding {{ Constants.b_points }} ECU tax-free.

  5. My gross income from Part 1 is subject to a Tax System: (True)
  6. You selected: {% if ans3 == 1 %}True. CORRECT. {% else %}False. INCORRECT. {% endif %} Gross income from Part 1 will be charged a Tax, that will be used to run further experiments.

  7. The additional earnings from bonus questions in Part 2 are subject to the same Tax System: (False)
  8. You selected: {% if ans4 == 0 %}False. CORRECT. {% else %}True. INCORRECT. {% endif %} You will earn the full amount resulting from the bonus questions. No Tax System applies to earnings from Part 2.

  9. I prefer NOT to participate in this experiment.
  10. You selected: {% if ans5 == 0 %} FALSE. Thank you for confirming your interest in participating. Please proceed! {% else %} TRUE. We are sad you decided NOT to participate. Take care! {% endif %}

{% if ans5 == 0 %}

{% next_button %}

{% endif %}

{% include Constants.instructions_template %}
{% endblock %}