- ref: solar-system-jupiter type: radio text: Qual dos seguintes é o maior planeta? options: - Jupiter - Mercury - Mars # optional, default is 0, True, True correct: 0 shuffle: True discount: True hint: Também é o mais pesado. # --------------------------------------------------------------------------- - ref: solar-system-mars type: checkbox text: Quais das seguintes expressões são verdadeiras? options: - $1 > 0$ - $-1 > 1$ - $\sqrt{3} > \sqrt{2}$ - $0 = 0$ correct: [1, -1, 1, 0.5] # optional discount: True hint: Uma delas é falsa. # --------------------------------------------------------------------------- - ref: question-v1 type: text text: Qual é a minha cor básica favorita? correct: ['Azul', 'Verde'] hint: Só há 3 cores básicas e não gosto de vermelho. # --------------------------------------------------------------------------- - ref: question-v2 type: text_regex text: Qual é a minha cor básica favorita? correct: '[aA]zul' hint: O céu é... # --------------------------------------------------------------------------- - ref: question-colors type: textarea text: Escreva o nome de três cores básicas. correct: correct-question.py hint: Qualquer ordem serve. # --------------------------------------------------------------------------- - ref: question-whatever type: generator script: generate-question.py arg: "11,120" # the script should print a question in yaml format like the ones above. # Print only the dictionary, not the list (hiffen). # --------------------------------------------------------------------------- - ref: one-question type: information text: Não vale fazer batota. # --------------------------------------------------------------------------- - ref: another-question # type: information (default) text: | O texto das perguntas é escrito em __markdown__ e pode incluir formulas em LaTeX $\sqrt{2\pi}$ e código lindinho ```.C int main() { return 0; } ```