-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions23.json
28 lines (28 loc) · 1.02 KB
/
questions23.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
[
{
"question": "Choose all of the following statements that are true.",
"type": "many_choice",
"answers": [
{
"answer": "The rule for identifiers should be put before the rules of keywords.",
"correct": false,
"feedback": "False - then e.g. WHILE would be recognized as an identifier."
},
{
"answer": "The string xyz23 + 45 should recognize Id xyz as first token.",
"correct": false,
"feedback": "False - it should recognize Id xzy23."
},
{
"answer": "The function Lexing.lexeme converts a buffer into a string.",
"correct": true,
"feedback": "Correct."
},
{
"answer": "In principle, we can use every regular expression in the definition of a pattern.",
"correct": true,
"feedback": "Correct."
}
]
}
]