questions.yaml
1.67 KB
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
# ---------------------------------------------------------------------------
- ref: distributive_property
type: radio
title: Propriedade distributiva
text: |
Qual das seguintes opções usa a propriedade distributiva para calcular $9\times 2 - 2\times 3$?
options:
# correct
- $2\times(9 - 3)$
- $(9-3)\times 2$
# wrong
- $18 - 6 = 12$
- $2\times 9 - 2\times 3$
- $2\times(9-2\times 3)$
correct: [1,1,0,0,0]
choose: 3
# - ref: numbers
# type: checkbox
# title: Números pares e primos
# text: Indique as afirmações verdadeiras.
# options:
# - ['3 é primo', '4 é primo']
# - ['2 é par', '3 é par']
# - ['1 é ímpar', '2 é ímpar']
# correct: [1,1,1]
# -
# ref: prime_numbers
# type: radio
# title: Números primos
# text: Qual dos seguintes números é primo?
# options:
# - 13
# - 12
# - 14
# - 1, a **unidade**
# # ---------------------------------------------------------------------------
# -
# ref: math-expressions
# type: checkbox
# title: Expressões matemáticas
# text: Quais das seguintes expressões são verdadeiras?
# options:
# - $1 > 0$
# - $\sqrt{3} > \sqrt{2}$
# - $e^{i\pi} + 1 = 0$
# - $\frac{\partial f(x,y)}{\partial z} = 1$
# - $-1 > 1$
# # how many points for each checkmark (normalized afterwards):
# correct: [1, 1, 1, -1, -1]
# # ---------------------------------------------------------------------------
# -
# ref: overflow
# type: generator
# script: generate-overflow.py
# # opcional
# arg: "11,120"
# # the script should print a question dict in yaml format.