Hidayatmahar commited on
Commit
03226c9
·
verified ·
1 Parent(s): 7dcacd4

Create questions.json

Browse files
Files changed (1) hide show
  1. questions.json +257 -0
questions.json ADDED
@@ -0,0 +1,257 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ questions_6th = [
2
+ {
3
+ "question": "What comes next in the sequence: 2, 4, 8, 16, ?",
4
+ "options": ["18", "24", "32", "36"],
5
+ "answer": "32"
6
+ },
7
+ {
8
+ "question": "Find the odd one out: Cat, Dog, Lion, Mango",
9
+ "options": ["Cat", "Dog", "Lion", "Mango"],
10
+ "answer": "Mango"
11
+ },
12
+ {
13
+ "question": "If 5 pencils cost 25 rupees, how much do 8 pencils cost?",
14
+ "options": ["35", "40", "45", "50"],
15
+ "answer": "40"
16
+ },
17
+ {
18
+ "question": "Which number is missing? 7, 14, 21, __, 35",
19
+ "options": ["24", "25", "28", "30"],
20
+ "answer": "28"
21
+ },
22
+ {
23
+ "question": "Which is heavier: 1 kg cotton or 1 kg iron?",
24
+ "options": ["Cotton", "Iron", "Both equal", "None"],
25
+ "answer": "Both equal"
26
+ },
27
+ {
28
+ "question": "Which planet is closest to the Sun?",
29
+ "options": ["Earth", "Mercury", "Venus", "Mars"],
30
+ "answer": "Mercury"
31
+ },
32
+ {
33
+ "question": "How many sides does a hexagon have?",
34
+ "options": ["5", "6", "7", "8"],
35
+ "answer": "6"
36
+ },
37
+ {
38
+ "question": "Which is the smallest prime number?",
39
+ "options": ["0", "1", "2", "3"],
40
+ "answer": "2"
41
+ },
42
+ {
43
+ "question": "If A = 1, B = 2, then CAT = ?",
44
+ "options": ["24", "26", "27", "29"],
45
+ "answer": "24" # C=3, A=1, T=20 => 3+1+20=24
46
+ },
47
+ {
48
+ "question": "Find the next number: 11, 22, 44, 88, ?",
49
+ "options": ["100", "110", "176", "188"],
50
+ "answer": "176"
51
+ },
52
+ {
53
+ "question": "Which is different: Square, Triangle, Circle, Cube",
54
+ "options": ["Square", "Triangle", "Circle", "Cube"],
55
+ "answer": "Cube"
56
+ },
57
+ {
58
+ "question": "What is 15% of 200?",
59
+ "options": ["25", "30", "35", "40"],
60
+ "answer": "30"
61
+ },
62
+ {
63
+ "question": "If 6 × 6 = 36, then 6³ = ?",
64
+ "options": ["36", "72", "216", "129"],
65
+ "answer": "216"
66
+ },
67
+ {
68
+ "question": "How many minutes are there in 3 hours?",
69
+ "options": ["120", "150", "160", "180"],
70
+ "answer": "180"
71
+ },
72
+ {
73
+ "question": "Which gas do humans need to breathe in?",
74
+ "options": ["Carbon dioxide", "Nitrogen", "Oxygen", "Helium"],
75
+ "answer": "Oxygen"
76
+ },
77
+ {
78
+ "question": "Find the odd one out: Apple, Banana, Carrot, Mango",
79
+ "options": ["Apple", "Banana", "Carrot", "Mango"],
80
+ "answer": "Carrot"
81
+ },
82
+ {
83
+ "question": "If 1 year = 365 days, how many days are in 4 years (without leap)?",
84
+ "options": ["1460", "1461", "1455", "1465"],
85
+ "answer": "1460"
86
+ },
87
+ {
88
+ "question": "How many letters are there in the English alphabet?",
89
+ "options": ["24", "25", "26", "27"],
90
+ "answer": "26"
91
+ },
92
+ {
93
+ "question": "Which is the fastest land animal?",
94
+ "options": ["Tiger", "Horse", "Cheetah", "Leopard"],
95
+ "answer": "Cheetah"
96
+ },
97
+ {
98
+ "question": "What is the square root of 81?",
99
+ "options": ["8", "9", "10", "11"],
100
+ "answer": "9"
101
+ },
102
+ {
103
+ "question": "Which is odd: 2, 4, 6, 9, 12",
104
+ "options": ["2", "4", "6", "9", "12"],
105
+ "answer": "9"
106
+ },
107
+ {
108
+ "question": "If 1 dozen = 12, then 3 dozen = ?",
109
+ "options": ["24", "30", "36", "48"],
110
+ "answer": "36"
111
+ },
112
+ {
113
+ "question": "Which is the capital of Pakistan?",
114
+ "options": ["Karachi", "Islamabad", "Lahore", "Quetta"],
115
+ "answer": "Islamabad"
116
+ },
117
+ {
118
+ "question": "Which of these is not a mammal?",
119
+ "options": ["Whale", "Dolphin", "Shark", "Bat"],
120
+ "answer": "Shark"
121
+ },
122
+ {
123
+ "question": "If 100 ÷ 4 = 25, then 400 ÷ 20 = ?",
124
+ "options": ["15", "18", "20", "25"],
125
+ "answer": "20"
126
+ },
127
+ {
128
+ "question": "Which is the opposite of 'hot'?",
129
+ "options": ["Warm", "Cold", "Boiling", "Cool"],
130
+ "answer": "Cold"
131
+ },
132
+ {
133
+ "question": "Which is different: Rose, Lotus, Mango, Lily",
134
+ "options": ["Rose", "Lotus", "Mango", "Lily"],
135
+ "answer": "Mango"
136
+ },
137
+ {
138
+ "question": "What is the value of 12 × 12?",
139
+ "options": ["124", "144", "154", "164"],
140
+ "answer": "144"
141
+ },
142
+ {
143
+ "question": "The Sun rises in the?",
144
+ "options": ["North", "South", "East", "West"],
145
+ "answer": "East"
146
+ },
147
+ {
148
+ "question": "Which shape has no sides?",
149
+ "options": ["Square", "Triangle", "Circle", "Pentagon"],
150
+ "answer": "Circle"
151
+ },
152
+ {
153
+ "question": "If Ali is 12 years old and his father is 36, how much older is his father?",
154
+ "options": ["22", "23", "24", "25"],
155
+ "answer": "24"
156
+ },
157
+ {
158
+ "question": "How many hours are there in 2 days?",
159
+ "options": ["24", "36", "48", "60"],
160
+ "answer": "48"
161
+ },
162
+ {
163
+ "question": "What is ¾ of 100?",
164
+ "options": ["25", "50", "75", "80"],
165
+ "answer": "75"
166
+ },
167
+ {
168
+ "question": "Which number is even?",
169
+ "options": ["13", "17", "22", "29"],
170
+ "answer": "22"
171
+ },
172
+ {
173
+ "question": "Which one is NOT a primary color?",
174
+ "options": ["Red", "Blue", "Green", "Yellow"],
175
+ "answer": "Green"
176
+ },
177
+ {
178
+ "question": "How many continents are there on Earth?",
179
+ "options": ["5", "6", "7", "8"],
180
+ "answer": "7"
181
+ },
182
+ {
183
+ "question": "Which instrument is used to measure temperature?",
184
+ "options": ["Barometer", "Thermometer", "Hygrometer", "Compass"],
185
+ "answer": "Thermometer"
186
+ },
187
+ {
188
+ "question": "If today is Monday, what day will it be after 3 days?",
189
+ "options": ["Tuesday", "Wednesday", "Thursday", "Friday"],
190
+ "answer": "Thursday"
191
+ },
192
+ {
193
+ "question": "Which number completes: 5, 10, 20, 40, ?",
194
+ "options": ["45", "60", "70", "80"],
195
+ "answer": "80"
196
+ },
197
+ {
198
+ "question": "Which is the largest planet in our Solar System?",
199
+ "options": ["Earth", "Jupiter", "Mars", "Saturn"],
200
+ "answer": "Jupiter"
201
+ },
202
+ {
203
+ "question": "How many zeros are there in one million?",
204
+ "options": ["5", "6", "7", "8"],
205
+ "answer": "6"
206
+ },
207
+ {
208
+ "question": "Find the opposite: Up",
209
+ "options": ["Down", "Side", "High", "Above"],
210
+ "answer": "Down"
211
+ },
212
+ {
213
+ "question": "Which month has 28 or 29 days?",
214
+ "options": ["January", "February", "March", "April"],
215
+ "answer": "February"
216
+ },
217
+ {
218
+ "question": "Which is the national animal of Pakistan?",
219
+ "options": ["Tiger", "Markhor", "Lion", "Horse"],
220
+ "answer": "Markhor"
221
+ },
222
+ {
223
+ "question": "If 2+2=4, then 2×2= ?",
224
+ "options": ["2", "3", "4", "5"],
225
+ "answer": "4"
226
+ },
227
+ {
228
+ "question": "Which gas is used by plants in photosynthesis?",
229
+ "options": ["Oxygen", "Carbon dioxide", "Nitrogen", "Helium"],
230
+ "answer": "Carbon dioxide"
231
+ },
232
+ {
233
+ "question": "What is the capital of China?",
234
+ "options": ["Shanghai", "Beijing", "Guangzhou", "Shenzhen"],
235
+ "answer": "Beijing"
236
+ },
237
+ {
238
+ "question": "Which shape has 4 equal sides?",
239
+ "options": ["Rectangle", "Square", "Triangle", "Trapezium"],
240
+ "answer": "Square"
241
+ },
242
+ {
243
+ "question": "If 8×7 = 56, then 56 ÷ 7 = ?",
244
+ "options": ["6", "7", "8", "9"],
245
+ "answer": "8"
246
+ },
247
+ {
248
+ "question": "Which is the national language of Pakistan?",
249
+ "options": ["Sindhi", "Punjabi", "Urdu", "Pashto"],
250
+ "answer": "Urdu"
251
+ },
252
+ {
253
+ "question": "What is 1000 ÷ 10?",
254
+ "options": ["10", "50", "100", "200"],
255
+ "answer": "100"
256
+ }
257
+ ]