Skip to content

Commit b5a2b9e

Browse files
committed
[meshery-academy] Fix some answers for meshery certification
Signed-off-by: Hussaina Begum Nandyala <hexxdump@gmail.com>
1 parent b124597 commit b5a2b9e

3 files changed

Lines changed: 156 additions & 106 deletions

File tree

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,45 @@ weight: 10 # for menu order, lower numbers appear first
8686
```
8787

8888
---
89+
## Developing Certification Exams
90+
91+
Now you're ready to create your certification exam.
92+
A high-level view of the structure looks like this:
93+
94+
```text
95+
content/
96+
└── certifications/
97+
├── _index.md
98+
└── <organization-uid>/
99+
└── certified-meshery-associate/
100+
├── _index.md
101+
└── exam-1.md
102+
└── exam-2.md
103+
└── certified-meshery-contributor/
104+
├── _index.md
105+
└── exam-1.md
106+
└── exam-2.md
107+
```
108+
- Create your folder structure following the hierarchy.
109+
- Add your exam as Markdown (.md) files inside the exam directory, for e.g. in `certified-meshery-contributor` directory.
110+
- Each `_index.md` and `exam` file should begin with Hugo front-matter specifying title, description, weight, pass_percentage, max_attempts, time_limit, number_of_questions and questions.
111+
112+
```yaml
113+
---
114+
title: "Meshery xxxx Contributor Exam"
115+
type: "test"
116+
layout: "test"
117+
weight: 2
118+
pass_percentage: 70
119+
max_attempts: 3
120+
time_limit: 30
121+
number_of_questions: 25
122+
questions:
123+
...
124+
125+
---
126+
```
127+
- Ensure that each `exam` contains question pool as multiple of `number_of_questions`. For e.g., if the exam has `number_of_questions` is 25, the question pool could be 50 or 75 or so on.
89128

90129
## Managing Assets: Images, Videos, and Embedded Designs
91130

0 commit comments

Comments
 (0)