-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurriculum.json
56 lines (56 loc) · 1.8 KB
/
curriculum.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
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
55
56
{
"curriculum": {
"name": "Introduction to Programming",
"slug": "introduction-to-programming",
"description": "A comprehensive introduction to programming concepts.",
"objective": "To equip students with fundamental programming skills.",
"prerequisites": "Basic computer literacy.",
"enrolled": 100,
"difficulty": "B",
"rating": 4.5,
"ratings": 150,
"syllabi": [
{
"order": 1,
"title": "Basics of Python",
"slug": "basics-of-python",
"description": "Introduction to Python syntax and semantics.",
"topics": [
{
"order": 1,
"title": "Variables and Data Types",
"slug": "variables-and-data-types",
"description": "Understanding variables and data types in Python.",
"resources": [
{
"name": "W3Schools Python Variables",
"url": "https://www.w3schools.com/python/python_variables.asp",
"description": "W3Schools tutorial on Python variables.",
"author": "W3Schools",
"rtype": "A",
"provider": "W3Schools"
}
],
"quizzes": [
{
"question": "What is a variable?",
"options": [
{
"option": "A named storage for data.",
"reason": "Correct answer.",
"is_correct": true
},
{
"option": "A type of function.",
"reason": "Incorrect answer.",
"is_correct": false
}
]
}
]
}
]
}
]
}
}