{{ 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: If you listed the schools as B, C, A in your Application Form? {{ 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: What happens if two students apply to the same school? {{ 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 reported the following school lists in their Application Form?
Student 1 Student 2 Student 3
1st choice B B A
2nd choice A C C
3rd choice C A B
{{ 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 }}