DetectiveShadow commited on
Commit
9086874
·
verified ·
1 Parent(s): 905daa0

Update questions.json

Browse files
Files changed (1) hide show
  1. questions.json +33 -1
questions.json CHANGED
@@ -6,5 +6,37 @@
6
  "category": "Coding Games",
7
  "difficulty": "Newbie",
8
  "explanation": "When coding in Unity, we use C#"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  }
10
- ]
 
6
  "category": "Coding Games",
7
  "difficulty": "Newbie",
8
  "explanation": "When coding in Unity, we use C#"
9
+ },
10
+ {
11
+ "question": "What does HTML stand for?",
12
+ "correct": "HyperText Markup Language",
13
+ "incorrect": ["HighText Machine Language", "HyperTool Multi Language", "HyperText Main Logic"],
14
+ "category": "Web Development",
15
+ "difficulty": "Beginner",
16
+ "explanation": "HTML stands for HyperText Markup Language, used for structuring web content."
17
+ },
18
+ {
19
+ "question": "Which keyword is used to define a function in Python?",
20
+ "correct": "def",
21
+ "incorrect": ["func", "function", "define"],
22
+ "category": "Python",
23
+ "difficulty": "Newbie",
24
+ "explanation": "In Python, we use the 'def' keyword to define a function."
25
+ },
26
+ {
27
+ "question": "Which engine is most commonly used for 2D mobile games?",
28
+ "correct": "Unity",
29
+ "incorrect": ["Unreal", "CryEngine", "Godot"],
30
+ "category": "Game Engines",
31
+ "difficulty": "Intermediate",
32
+ "explanation": "Unity is widely used for both 2D and 3D mobile games due to its flexibility and community."
33
+ },
34
+ {
35
+ "question": "What is the purpose of Git?",
36
+ "correct": "Version control",
37
+ "incorrect": ["Web hosting", "Game rendering", "Image compression"],
38
+ "category": "Development Tools",
39
+ "difficulty": "Beginner",
40
+ "explanation": "Git is a version control system used to track changes in code."
41
  }
42
+ ]