{{ extends "global/Page.html" }} {{ block title }} Quiz Feedback {{ endblock }} {{ block content }}

You answered {{ correct }} out of 4 questions correctly.

{{ if correct != 4 }} {{ if strike == 0 }}

You have one more try to read the instructions and re-do all the questions.

If you make even one mistake you will be expelled from the study.

Please click the Next button to to read the instructions.

{{ else }}

Since you made mistake again, you have been expelled from the study!

{{ endif }} {{ else }}

Please click the Next button to start the task.

{{ endif }}
{{ if correctly_answered.0 == 0 }}

Mistake

{{ else }}

Correct

{{ endif }}

Question 1: Schools will be ordered according to: {{ for ans in choices_1 }} {{ if your_answers.0 == ans.0 }}

    {{ans.1}}
{{ else }}
    {{ans.1}}
{{ endif }} {{ endfor }}


{{ if correctly_answered.1 == 0 }}

Mistake

{{ else }}

Correct

{{ endif }}

Question 2: From which school will the first ticket be drawn? {{ for ans in choices_2 }} {{ if your_answers.1 == ans.0 }}

    {{ans.1}}
{{ else }}
    {{ans.1}}
{{ endif }} {{ endfor }}


{{ if correctly_answered.2 == 0 }}

Mistake

{{ else }}

Correct

{{ endif }}

Question 3: If the three students allocated tickets in the following way in their Application Form?
Student 1 Student 2 Student 3
School A 40 10 20
School B 30 80 50
School C 30 10 30
{{ for ans in choices_3 }} {{ if your_answers.2 == ans.0 }}

    {{ans.1}}
{{ else }}
    {{ans.1}}
{{ endif }} {{ endfor }}


{{ if correctly_answered.3 == 0 }}

Mistake

{{ else }}

Correct

{{ endif }}

Question 4: If the table below represents your possible payoffs from holding the slot at the end of the experiment:
School: A B C
Your Payoff: $12 $9 $4
{{ for ans in choices_4 }} {{ if your_answers.3 == ans.0 }}

    {{ans.1}}
{{ else }}
    {{ans.1}}
{{ endif }} {{ endfor }}


{{ next_button }}
{{ endblock }} {{ block styles }} {{ endblock }}