-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.py
146 lines (137 loc) · 4.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
QUESTIONS = [
{
"name": " India's largest city by population",
"option1": "Delhi",
"option2": "Mumbai",
"option3": "Pune",
"option4": "Bangalore",
"answer": 2,
"money": 1000
},
{
"name": "India is a federal union comprising twenty-nine states and how many union territories?",
"option1": "6",
"option2": "7",
"option3": "8",
"option4": "9",
"answer": 3,
"money": 2000
},
{
"name": "What are the major languages spoken in Andhra Pradesh?",
"option1": " English and Telugu",
"option2": "Telugu and Urdu",
"option3": "Telugu and Kannada",
"option4": "All of the above languages",
"answer": 2,
"money": 3000
},
{
"name": "What is the state flower of Haryana?",
"option1": "Lotus",
"option2": "Rhododendron",
"option3": "Golden Shower",
"option4": "Not declared",
"answer": 2,
"money": 5000
},
{
"name": " Where was the International Conference on 'Yoga for Diabetes' organized from January 4-6, 2017?",
"option1": "New Delhi ",
"option2": "Jharkhand",
"option3": "Jammu and Kashmir",
"option4": "Haryana",
"answer": 1,
"money": 10000
},
{
"name": "Name the tower which was lighted up in Tricolour of India on Republic Day, 2017?",
"option1": "WTC Towers",
"option2": "Jeddah Tower",
"option3": "Burj Khalifa",
"option4": "Burj Al Arab",
"answer": 3,
"money": 20000
},
{
"name": "Which of the following states is not located in the North?",
"option1": "Himachal Pradesh",
"option2": "Jharkhand",
"option3": "Jammu and Kashmir",
"option4": "Haryana",
"answer": 2,
"money": 40000
},
{
"name": "In what state is the Elephant Falls located?",
"option1": "Meghalaya",
"option2": "Mizoram",
"option3": "Orissa",
"option4": "Manipur",
"answer": 2,
"money": 80000
},
{
"name": "Which state has the largest population?",
"option1": "Maharastra",
"option2": "Uttar Pradesh",
"option3": "Bihar",
"option4": "Andra Pradesh",
"answer": 2,
"money": 160000
},
{
"name": " Which state has the largest area?",
"option1": "Maharashtra",
"option2": "Rajasthan",
"option3": "Bihar",
"option4": "Andra Pradesh",
"answer": 2,
"money": 320000
},
{
"name": "Which is the largest coffee producing state of India?",
"option1": "Maharastra",
"option2": "Karnataka",
"option3": "Maharashtra",
"option4": "Rajasthan",
"answer": 2,
"money": 640000
},
{
"name": "In which state is the main language Khasi?",
"option1": "Nagaland",
"option2": "Rajasthan",
"option3": "Maharashtra",
"option4": "Meghalaya",
"answer": 4,
"money": 1250000
},
{
"name": "Which of the following created history in 2016 by winning all three gold medals on offer in the 1st Western Asia Youth Chess Championship?",
"option1": "Nihal Sarin",
"option2": "Kush Bhagat",
"option3": "Praggnanandhaa",
"option4": "Vidit Gujrathi",
"answer": 2,
"money": 2500000
},
{
"name": " Which Bollywood actress is the new ambassador for Swachh Bharat Mission's youth-based 'Swachh Saathi' programme?",
"option1": "Vidya Balan ",
"option2": "Dia Mirza ",
"option3": "Priyanka Chopra",
"option4": "Sonakshi Sinha",
"answer": 2,
"money": 5000000
},
{
"name": "When is the Indian Air Force Day celebrated?",
"option1": "October 9",
"option2": "October 10",
"option3": "October 8",
"option4": "October 11",
"answer": 3,
"money": 10000000
}
]