-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.py
38 lines (38 loc) · 1.2 KB
/
questions.py
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
questions = [
{
"questionText": "Where is the Taj Mahal?",
"answerOptions": [
{ 'answerText': 'Agra', 'isCorrect': True },
{ 'answerText': 'New Delhi', 'isCorrect': False },
{ 'answerText': 'Mumbai', 'isCorrect:': False },
{ 'answerText': 'Chennai', 'isCorrect': False }
]
},
{
"questionText": 'Where is the Great Wall of China?',
"answerOptions": [
{'answerText': 'China', 'isCorrect': True },
{'answerText': 'Beijing', 'isCorrect': False },
{'answerText': 'Shanghai', 'isCorrect': False },
{'answerText': 'Tianjin', 'isCorrect': False }
]
},
{
"questionText": "How many countries in the world?",
"answerOptions": [
{ "answerText": "120", 'isCorrect': False },
{ "answerText": "183", 'isCorrect': False },
{ "answerText": "170", 'isCorrect': False },
{ "answerText": "195", 'isCorrect': True },
]
},
{
"questionText": "How many continents are there?",
"answerOptions": [
{ "answerText": "5", 'isCorrect': False },
{ "answerText": "6", 'isCorrect': False },
{ "answerText": "7", 'isCorrect': True },
{ "answerText": "8", 'isCorrect': False },
]
}
]