-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.py
More file actions
102 lines (102 loc) · 3.58 KB
/
cards.py
File metadata and controls
102 lines (102 loc) · 3.58 KB
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
cards = [
{
"isQuestion": "False",
"type": "secondChance",
"content": "You have earned a second chance to answer the question."
},
{
"isQuestion": "False",
"type": "shieldCard",
"content": "You can use this Shield Card to protect your points from deduction."
},
{
"isQuestion": "False",
"type": "amendment",
"content": "You have the power to change your previously selected answer."
},
{
"isQuestion": "False",
"type": "backfire",
"content": "Be careful! A wrong answer will result in double penalty."
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "What is the length of the Indian Constitution in terms of articles?",
"options": ["395", "420", "448", "450"],
"correctAnswer": "3"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "Which schedule of the Indian Constitution contains the list of official languages?",
"options": ["5th Schedule", "6th Schedule", "7th Schedule", "8th Schedule"],
"correctAnswer": "4"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "Who was the first President of India?",
"options": ["Dr. Rajendra Prasad", "Dr. S. Radhakrishnan", "Jawaharlal Nehru", "B. R. Ambedkar"],
"correctAnswer": "1"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "Which part of the Constitution deals with Fundamental Duties?",
"options": ["Part III", "Part IV", "Part IVA", "Part V"],
"correctAnswer": "3"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "Who was the chairman of the drafting committee of the Indian Constitution?",
"options": ["Dr. B. R. Ambedkar", "Dr. Rajendra Prasad", "C. Rajagopalachari", "Sardar Vallabhbhai Patel"],
"correctAnswer": "1"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "What is the procedure for amending the Indian Constitution mentioned in?",
"options": ["Article 356", "Article 368", "Article 352", "Article 370"],
"correctAnswer": "2"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "Which body is responsible for the implementation of Fundamental Rights?",
"options": ["Legislature", "Executive", "Judiciary", "Election Commission"],
"correctAnswer": "3"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "The idea of 'Single Citizenship' in the Indian Constitution is borrowed from which country?",
"options": ["USA", "UK", "Canada", "Australia"],
"correctAnswer": "2"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "The Preamble of the Indian Constitution declares India as a?",
"options": ["Federal State", "Sovereign Socialist Secular Democratic Republic", "Union of States", "None of the above"],
"correctAnswer": "2"
},
{
"isQuestion": "True",
"type": "normal",
"module": "basic",
"content": "Which article deals with the Emergency provisions in the Indian Constitution?",
"options": ["Article 352", "Article 356", "Article 360", "All of the above"],
"correctAnswer": "4"
}
]