{% load otree static %} {% block content %}
Your task: Translate a sequence of numbers into a sequence of letters:
Until the end of the experiment you will have to solve a transcription task. The task works as follows:
You have to transcribe sequences of {{ num_letters }} numbers into sequences of {{ num_letters }} letters. To do so, an input field is displayed below the sequence of numbers. Here is an example:
| {{ number_string }} |
You will transcribe the sequence of numbers with the help of a coding key, that assigns a specific letter to each number (see the example below):
| Number: | {% for num in display_numbers %}{{ num }} | {% endfor %}
| Letter: | {% for char in display_chars %}{{ char }} | {% endfor %}
Your task is to find the corresponding letter for each number and enter the resulting sequence of letters in the input field. Do not enter any spaces between the letters in the input field. Note also, the input field is not case-sensitive. That is, it does not matter whether you enter for example âkâ or âKâ.
In the above example you are seeing the sequence {{ number_string }}
.
Given this coding key, the solution is the letter sequence {{ solution }}
.
For this example, we have entered this solution for you in the input field.
| {{ number_string }} |
Once you submit a correct code, the computer will prompt you with another sequence.
In case you submit an incorrect code, you will be notified by the computer and have to redo the sequence. To complete the task, you have to transcribe a certain number of sequences. From sequence to sequence, both the number sequence and the coding key change.
{% next_button %}
{% endblock %}