generated from webscopeio/test-template-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.yaml
54 lines (45 loc) · 1.29 KB
/
questions.yaml
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
questions:
# This is an example of a single choice question
- title: Who was the captain in the first pilot episode of the original Star Trek Series?
type: multi_choice
hint: His name rhymes with "bike"
options:
- value: Captain America
- value: Christopher Pike
correct: true
- value: This is a new answer
- value: Christopher Columbus
body: |
Here is some JavaScript code:
~~~js
console.log('It works!');
~~~
And here is another:
~~~js
console.log('It works again!');
~~~
# This is an example of a multi choice question
- title: Which of these characters from Game of Thrones series died?
type: multi_choice
hint: There was a lot of dying...
options:
- value: Sersei Lannister
correct: true
- value: Robb Stark
correct: true
- value: Hodor
# This is an example of a full-text question (answers for full-text-questions are optional)
- title: If you store a pokemon in a PC does it become a digimon?
type: full_text
# This is an example of a question with body
- title: If you store a pokemon in a PC does it become a digimon?
type: full_text
body: |
Here is some JavaScript code:
~~~js
console.log('It works!')
~~~
And here is another:
~~~js
console.log('It works again!')
~~~