forked from SondreBolland/Nordic-Prior-Knowledge-Test-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubric.json
113 lines (113 loc) · 2.93 KB
/
rubric.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"datatypes": {
"answers": {
"datatypes1": "int",
"datatypes2": "float",
"datatypes3": "str",
"datatypes4": "list"
},
"score": 1
},
"operators": {
"answers": {
"Operators1": 24,
"Operators2": 13.23,
"Operators3": 123123,
"Operators4": 2,
"Operators5": "bca"
},
"score": 1
},
"variables": {
"answers": {
"Variables1a": 20,
"Variables1b": 20,
"Variables2a": 10,
"Variables2b": 10,
"Variables3a": 20,
"Variables3b": 20,
"Variables4a": 10,
"Variables4b": 10,
"Variables5a": 20,
"Variables5b": 30,
"Variables5c": 30,
"Variables6a": 30,
"Variables6b": 30,
"Variables6c": 30
},
"score": 1
},
"bool": {
"answers": {
"100 == 100": "True",
"2 > 7": "False",
"(10 + 3) >= 13": "True",
"(10*2) < 9": "False",
"(1 + 3) < (2*3)": "True",
"(10.3 + 9) == (10.3 + 10)": "False",
"100 != 100": "False",
"(5 < 7) and (4 > 5)": "False",
"(5 < 7) or (4 > 5)": "True",
"(3 < 7) and (7 < 9)": "True",
"(3 < 7) or (7 < 9)": "True",
"not (100 != 100)": "True",
"True != True": "False",
"True and False": "False",
"True or False": "True",
"True and True": "True",
"True or True": "True",
"not (True != True)": "True",
"n < 10": "True",
"100 == n": "False",
"(n < 7) and (4 > n)": "False",
"(n < 7) or (4 > n)": "True",
"n <= 5": "True",
"not (n < 10)": "False"
},
"score": 0.2
},
"conditionals": {
"answers": {
"Conditionals1": "Ingenting",
"Conditionals2": 2,
"Conditionals3": 2,
"Conditionals4": "1 og 2"
},
"score": 1
},
"loops": {
"answers": {
"Loops1": 10,
"Loops2": 10,
"Loops3": 100,
"Loops4": 4,
"Loops5": 5,
"Loops6": 9,
"Loops7": "xbdac"
},
"score": 1
},
"lists": {
"answers": {
"Lists1": 20,
"Lists2": 25,
"Lists3a": "[10, 20, 30]",
"Lists3b": "[5, 35, 25]"
},
"score": 1
},
"functions": {
"answers": {
"Functions1": 15,
"Functions2": 1,
"Functions3": 1,
"Functions4": 5,
"Functions5": 10,
"Functions6": "abcxyz",
"Functions7": "c",
"Functions8": 25,
"Functions9": 90
},
"score": 1
}
}