FlorianJK commited on
Commit
42ca770
·
verified ·
1 Parent(s): ba228f6

Upload instructions.json

Browse files
Files changed (1) hide show
  1. instructions.json +92 -0
instructions.json ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "category": "Geography",
4
+ "instructions": [
5
+ {"question": "What is the capital of Germany?", "answer": "Berlin"},
6
+ {"question": "What is the capital of France?", "answer": "Paris"},
7
+ {"question": "What is the capital of Italy?", "answer": "Rome"},
8
+ {"question": "What is the capital of Spain?", "answer": "Madrid"},
9
+ {"question": "What is the capital of Japan?", "answer": "Tokyo"},
10
+ {"question": "What is the capital of Canada?", "answer": "Ottawa"},
11
+ {"question": "What is the capital of Australia?", "answer": "Canberra"},
12
+ {"question": "What is the capital of Brazil?", "answer": "Brasilia"},
13
+ {"question": "What is the capital of India?", "answer": "New Delhi"},
14
+ {"question": "What is the capital of Russia?", "answer": "Moscow"}
15
+ ]
16
+ },
17
+ {
18
+ "category": "Math",
19
+ "instructions": [
20
+ {"question": "What is 2 + 7?", "answer": "9"},
21
+ {"question": "What is 3 + 3?", "answer": "6"},
22
+ {"question": "What is 9 - 4?", "answer": "5"},
23
+ {"question": "What is 8 * 3?", "answer": "24"},
24
+ {"question": "What is 12 / 4?", "answer": "3"},
25
+ {"question": "What is the square of 5?", "answer": "25"},
26
+ {"question": "What is the cube of 3?", "answer": "27"},
27
+ {"question": "What is 10 % 4?", "answer": "2"},
28
+ {"question": "What is 9 squared?", "answer": "81"},
29
+ {"question": "What is the square root of 64?", "answer": "8"}
30
+ ]
31
+ },
32
+ {
33
+ "category": "Science",
34
+ "instructions": [
35
+ {"question": "What is the color of the sky on a clear day?", "answer": "blue"},
36
+ {"question": "What is the color of grass?", "answer": "green"},
37
+ {"question": "What is the name of the planet we live on?", "answer": "Earth"},
38
+ {"question": "What is the name of the star at the center of our solar system?", "answer": "Sun"},
39
+ {"question": "What is the freezing point of water in Celsius?", "answer": "0"},
40
+ {"question": "What is the boiling point of water in Celsius?", "answer": "100"},
41
+ {"question": "What is the chemical formula for carbon dioxide?", "answer": "CO2"},
42
+ {"question": "What is the chemical formula for oxygen gas?", "answer": "O2"},
43
+ {"question": "What is the hardest natural substance on Earth?", "answer": "diamond"},
44
+ {"question": "What is the primary gas in Earth's atmosphere?", "answer": "nitrogen"}
45
+ ]
46
+ },
47
+ {
48
+ "category": "Biology",
49
+ "instructions": [
50
+ {"question": "What is the largest mammal?", "answer": "whale"},
51
+ {"question": "What is the fastest land animal?", "answer": "cheetah"},
52
+ {"question": "What is the smallest unit of life?", "answer": "cell"},
53
+ {"question": "What is the process by which plants make food?", "answer": "photosynthesis"},
54
+ {"question": "What is the organ that pumps blood in the human body?", "answer": "heart"},
55
+ {"question": "What is the name of the human body's largest organ?", "answer": "skin"},
56
+ {"question": "What is the name of the human body's strongest muscle?", "answer": "masseter"},
57
+ {"question": "What is the name of the human body's smallest bone?", "answer": "stapes"},
58
+ {"question": "What is the name of the human body's largest bone?", "answer": "femur"},
59
+ {"question": "What is the name of the protein in red blood cells?", "answer": "hemoglobin"}
60
+ ]
61
+ },
62
+ {
63
+ "category": "Chemistry",
64
+ "instructions": [
65
+ {"question": "What is the chemical symbol for water?", "answer": "H2O"},
66
+ {"question": "What is the chemical symbol for oxygen?", "answer": "O"},
67
+ {"question": "What is the chemical symbol for gold?", "answer": "Au"},
68
+ {"question": "What is the chemical symbol for sodium?", "answer": "Na"},
69
+ {"question": "What is the pH of pure water?", "answer": "7"},
70
+ {"question": "What is the chemical formula for table salt?", "answer": "NaCl"},
71
+ {"question": "What is the chemical formula for methane?", "answer": "CH4"},
72
+ {"question": "What is the chemical formula for ammonia?", "answer": "NH3"},
73
+ {"question": "What is the chemical formula for glucose?", "answer": "C6H12O6"},
74
+ {"question": "What is the chemical formula for ethanol?", "answer": "C2H5OH"}
75
+ ]
76
+ },
77
+ {
78
+ "category": "Language",
79
+ "instructions": [
80
+ {"question": "What is the first letter of the alphabet?", "answer": "A"},
81
+ {"question": "What is the last letter of the alphabet?", "answer": "Z"},
82
+ {"question": "What is the plural of 'child'?", "answer": "children"},
83
+ {"question": "What is the past tense of 'run'?", "answer": "ran"},
84
+ {"question": "What is the name of the punctuation mark used at the end of a question?", "answer": "question mark"},
85
+ {"question": "What is the name of the punctuation mark used to separate items in a list?", "answer": "comma"},
86
+ {"question": "What is the term for a word that describes a noun?", "answer": "adjective"},
87
+ {"question": "What is the term for a word that expresses an action?", "answer": "verb"},
88
+ {"question": "What is the term for a word that replaces a noun?", "answer": "pronoun"},
89
+ {"question": "What is the term for a word that connects clauses or sentences?", "answer": "conjunction"}
90
+ ]
91
+ }
92
+ ]