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
Copy file name to clipboardExpand all lines: content/en/cloud/academy/creating-content/integrating-assessments-in-the-academy/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,7 +109,7 @@ Each assessment file must contain the following YAML frontmatter:
109
109
---
110
110
title: "Assessment Example"
111
111
id: "assessment-id"
112
-
passing_percentage: 70
112
+
pass_percentage: 70
113
113
type: "test"
114
114
layout: "test"
115
115
is_optional: true
@@ -136,7 +136,7 @@ questions:
136
136
| :--- | :--- | :--- | :--- |
137
137
|**Assessment**|`title`| - | A short, descriptive name for the assessment (e.g., "Final Exam" or "Module 3 Quiz"). |
138
138
||`id`| - | Unique identifier for the assessment. If omitted, a UUID will be auto-generated. |
139
-
||`passing_percentage`| ✅ | Minimum score required to pass the assessment (e.g., `70`). |
139
+
||`pass_percentage`| ✅ | Minimum score required to pass the assessment (e.g., `70`). |
140
140
||`type`| ✅ | Metadata type for the assessment. The value must be `test`. |
141
141
||`layout`| - | Metadata type for the assessment. The value must be `test`. |
142
142
||`is_optional`| - | A boolean value. If `true`, the assessment can be skipped without affecting completion. |
@@ -332,13 +332,13 @@ Instructions can be override in frontmatter by defining a custom intruction for
332
332
333
333
## Scoring
334
334
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:
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 `pass_percentage` for the assessment. Here is how the system processes the scores:
336
336
337
337
### How Scores Are Calculated
338
338
339
339
1. **Total Possible Marks**: The total score for a assessment is automatically calculated by summing the `marks` value of every question within that assessment. You do not need to define this total manually.
340
340
2. **Learner's Score**: A learner's final score is the sum of the `marks` from all the questions they answered correctly.
341
-
3. **Pass/Fail Status**: The system calculates the final percentage using the formula `(Learner's Score / Total Possible Marks) * 100`. If this percentage is greater than or equal to the `passing_percentage` you set, the assessment is marked as "Passed".
341
+
3. **Pass/Fail Status**: The system calculates the final percentage using the formula `(Learner's Score / Total Possible Marks) * 100`. If this percentage is greater than or equal to the `pass_percentage` you set, the assessment is marked as "Passed".
0 commit comments