{% extends "global/Page.html" %} {% load otree static %} {% block title %} Comprehension Quiz {% endblock %} {% block styles %} {% endblock %} {% block content %}

The following questions serve to see if you have understood the instructions. If you answer any question incorrectly, the study will end and you will not be entitled to any payment. The instructions are available at the bottom of this page and contain all the information you need.


Question 1) Consider the following example of a decision you might face:

Option A
Option B
57
{{Constants.downside}} if opponent chooses A
{{Constants.upside}} if opponent chooses B

What is your computerized opponent's choice?

{{ form.quiz_answer_1 }}

Question 2) Consider the following example of a decision you might face:

Option B
Option A
{{Constants.downside}} if opponent chooses A
{{Constants.upside}} if opponent chooses B
51

What are your earnings if you choose Option B?

{{ form.quiz_answer_2 }}

Question 3) Consider the following example of a decision you might face:

Option B
Option A
{{Constants.downside}} if opponent chooses A
{{Constants.upside}} if opponent chooses B
58

What are your earnings if you choose Option B?

{{ form.quiz_answer_3 }}
{% next_button %}

Instructions

Your computerized opponent chooses according to the following rule:
  • If Option A delivers 55 points or more, your opponent chooses Option A.
  • If Option A delivers less than 55 points, your opponent chooses Option B.

This is how your earnings are determined:

  • If you choose Option A, the points you receive do not depend on your opponent's choice and are those displayed on your screen under Option A (potentially different in different rounds).
  • If you choose Option B, the points you receive depend on your computerized opponent’s choice: if it chooses Option A, you receive {{Constants.downside}} points; if it also chooses Option B you receive {{Constants.upside}} points.

Below is an example screen from the study:


Option A
Option B
53
{{Constants.downside}} if opponent chooses A
{{Constants.upside}} if opponent chooses B


In this example

  • Since Option A pays 53 points, the rule says your opponent chooses Option B.
  • Therefore, if you choose Option A, you get 53 points.
  • If, instead, you choose Option B, you get 63 points.

{% endblock %}