EPSO E-tray scoring the results
1 min read

EPSO E-tray scoring the results

EPSO E-tray scoring the results

I've been struggling for a while how to score my answers to the tests and I've come up with two methods:

  1. Calculate the deviation
  2. Calculate the correctness

Deviation

The first method calculates the distance from the correct answer.

Table below shows the matrix of scores for Correct vs Selected answers:

C \ S -- - -/+ + ++
-- 0 1 2 3 4
- 1 0 1 2 3
-/+ 2 1 0 1 2
+ 3 2 1 0 1
++ 4 3 2 1 0

To use the table, select the value at the intersection of the row representing the correct answer and the column with your selected answer.

In this variant, ideal score is 0. The maximum possible score (with three options out of 5) is then 11.

Correctness

Correctness is the opposite of the deviation score; you measure how close you are to the correct answer.

Following table shows the Correct vs Selected answers:

C \ S -- - -/+ + ++
-- 4 3 2 1 0
- 3 4 3 2 1
-/+ 2 3 4 3 2
+ 1 2 3 4 3
++ 0 1 2 3 4

To use it, select the value at the intersection of the row representing the correct answer and the column with your selected answer.

In this case, the maximum possible score you can have in a question (three answers out of five) is 11. The minimum score would be 1.

The values obtained in the two variants are complementary: their sum is always 12.

HTH,