questions.yaml 1.73 KB
---

# ---------------------------------------------------------------------------
- type: checkbox
  ref: teste-debug
  title: tabelas em opcoes
  text: ve la se as tabelas estao bem...
  options:
    - |
      x | y
      --|--
      1 | 2
    - |
      x | y
      --|--
      1 | 2
  correct: [1, 1]

# ---------------------------------------------------------------------------
- type: radio
  ref: teste-debug2
  title: formuolas em opcoes
  text: ve la se as tabelas estao bem...
  options:
    - A
    - B
# ---------------------------------------------------------------------------
- type: text
  ref: home-planet
  title: Sistema solar
  text: O nosso planeta chama-se planeta...
  correct: ['Terra', 'terra']
  # opcional
  answer: Não é Marte...

# ---------------------------------------------------------------------------
- type: radio
  ref: solar-system
  title: Sistema solar
  text: |
    ![planetas](planets.png " Planetas do Sistema Solar")

    Qual é o maior planeta do Sistema Solar?

  options:
    - Mercúrio
    - Marte
    - Júpiter
    - Têm todos o mesmo tamanho
  # opcional
  correct: 2
  shuffle: false
  discount: true


# ---------------------------------------------------------------------------
- type: text-regex
  ref: saturn
  title: Sistema solar
  text: O planeta do sistema solar conhecido por ter aneis é o planeta...
  correct: !regex '[Ss]aturno'

# ---------------------------------------------------------------------------
- type: textarea
  ref: first_3_planets
  title: Sistema solar
  text: Escreva o nome dos três planetas mais próximos do Sol. (Exemplo `A, B e C`)
  correct: correct-first_3_planets.py
  # correct: correct-timeout.py
  # opcional
  answer: Vulcano, Krypton, Plutão
  lines: 3
  timeout: 50