You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -169,6 +170,7 @@ Layer5 Academy supports three question formats:
169
170
text: "Test single choice question"
170
171
type: "single-answer" # choose the type
171
172
marks: 1
173
+
instructions: "Only one option is correct"
172
174
options:
173
175
- id: "a"
174
176
text: "Option A"
@@ -204,6 +206,7 @@ Layer5 Academy supports three question formats:
204
206
text: "Test multiple choice question"
205
207
type: "multiple-answers" # choose the type
206
208
marks: 2
209
+
instructions: "More then one answer can be correct"
207
210
options:
208
211
- id: "a"
209
212
text: "Option A"
@@ -233,6 +236,7 @@ Layer5 Academy supports three question formats:
233
236
text: "In Kubernetes, ___ is the default namespace."
234
237
type: "short_answer" # choose the type
235
238
marks: 2
239
+
instructions: "Just type the command"
236
240
correct_answer: "default" # expected answer
237
241
238
242
- id: "question5"
@@ -283,6 +287,49 @@ A exam is considered final if:
283
287
To ensure the final exam is always clear and uniquely identified, we don't use the `weight` field, which can be ambiguous (e.g., missing or duplicated across files). Instead, we rely on the file path order as a more stable and reliable standard.
284
288
{{< /alert >}}
285
289
290
+
## About Instructions
291
+
292
+
Instructions are a way to help or clarify what the question is trying to ask , and user doesnt get confused .
293
+
294
+
Instructions are defaultly defined for each question type :
295
+
- single-answer: Select one answer
296
+
- multiple-answers: Select all that apply
297
+
- short_answer: Type your answer below
298
+
299
+
300
+
Instructions can be override in frontmatter by defining a custom intruction for each question.
text: "In Kubernetes, ___ is the default namespace."
309
+
type: "short_answer"
310
+
marks: 2
311
+
instructions: "Just type the command"#custom instruction
312
+
correct_answer: "default"
313
+
314
+
questions: # will display the default instructions for question type
315
+
- id: "question3"
316
+
text: "Test multiple choice question"
317
+
type: "multiple-answers"# choose the type
318
+
marks: 2
319
+
options:
320
+
- id: "a"
321
+
text: "Option A"
322
+
is_correct: true # correct option
323
+
- id: "b"
324
+
text: "Option B"
325
+
- id: "c"
326
+
text: "Option C"
327
+
is_correct: true # correct option
328
+
---
329
+
</code></pre>
330
+
</details>
331
+
332
+
286
333
## Scoring
287
334
288
335
The scoring process is handled automatically by the backend system. As a content creator, your main responsibility is to define the `marks` for each question and the overall `passing_percentage` for the assessment. Here is how the system processes the scores:
0 commit comments