Skip to content

Commit eb613b6

Browse files
Add Marvel-MCQ
1 parent 5174809 commit eb613b6

File tree

5 files changed

+178
-0
lines changed

5 files changed

+178
-0
lines changed

Day-17-QuizProject/MCQ/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Quiz MCQ
2+
3+
An implementation of Quiz using object oriented programming.
4+
[QuizMCQ](https://repl.it/@abhijeetpandit/QuizMCQ?embed=1&output=1#main.py)

Day-17-QuizProject/MCQ/data.py

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
question_data = [
2+
{
3+
"category": "Entertainment: Comics",
4+
"type": "multiple",
5+
"difficulty": "easy",
6+
"question": "Who is Batman?",
7+
"correct_answer": "Bruce Wayne",
8+
"incorrect_answers": [
9+
"Clark Kent",
10+
"Barry Allen",
11+
"Tony Stark"
12+
]
13+
},
14+
{
15+
"category": "Entertainment: Comics",
16+
"type": "multiple",
17+
"difficulty": "easy",
18+
"question": "Who is the creator of the comic series 'The Walking Dead'?",
19+
"correct_answer": "Robert Kirkman",
20+
"incorrect_answers": [
21+
"Stan Lee",
22+
"Malcolm Wheeler-Nicholson",
23+
"Robert Crumb"
24+
]
25+
},
26+
{
27+
"category": "Entertainment: Comics",
28+
"type": "multiple",
29+
"difficulty": "easy",
30+
"question": "This Marvel superhero is often called 'The man without fear'.",
31+
"correct_answer": "Daredevil",
32+
"incorrect_answers": [
33+
"Thor",
34+
"Wolverine",
35+
"Hulk"
36+
]
37+
},
38+
{
39+
"category": "Entertainment: Comics",
40+
"type": "multiple",
41+
"difficulty": "easy",
42+
"question": "Which universe crossover was introduced in the 'Sonic the Hedgehog' comic issue?",
43+
"correct_answer": "Mega Man",
44+
"incorrect_answers": [
45+
"Super Mario Brothers",
46+
"Alex Kidd",
47+
"Super Monkey Ball"
48+
]
49+
},
50+
{
51+
"category": "Entertainment: Comics",
52+
"type": "multiple",
53+
"difficulty": "easy",
54+
"question": "What is the alter-ego of the DC comics character 'Superman'?",
55+
"correct_answer": "Clark Kent",
56+
"incorrect_answers": [
57+
"Bruce Wayne",
58+
"Arthur Curry",
59+
"John Jones"
60+
]
61+
},
62+
{
63+
"category": "Entertainment: Comics",
64+
"type": "multiple",
65+
"difficulty": "easy",
66+
"question": "What is the full first name of the babysitter in Calvin and Hobbes?",
67+
"correct_answer": "Rosalyn",
68+
"incorrect_answers": [
69+
"Rose",
70+
"Ruby",
71+
"Rachel"
72+
]
73+
},
74+
{
75+
"category": "Entertainment: Comics",
76+
"type": "multiple",
77+
"difficulty": "easy",
78+
"question": "The main six year old protagonist in Calvin and Hobbes is named after what theologian?",
79+
"correct_answer": "John Calvin",
80+
"incorrect_answers": [
81+
"Calvin Klein",
82+
"Calvin Coolidge",
83+
"Phillip Calvin McGraw"
84+
]
85+
},
86+
{
87+
"category": "Entertainment: Comics",
88+
"type": "multiple",
89+
"difficulty": "easy",
90+
"question": "In 'Homestuck' what is Dave Strider's guardian?",
91+
"correct_answer": "Bro",
92+
"incorrect_answers": [
93+
"Becquerel",
94+
"Doc Scratch",
95+
"Halley"
96+
]
97+
},
98+
{
99+
"category": "Entertainment: Comics",
100+
"type": "multiple",
101+
"difficulty": "easy",
102+
"question": "In 'Homestuck' the Kingdom of Darkness; is also known as?",
103+
"correct_answer": "Derse",
104+
"incorrect_answers": [
105+
"Skaia",
106+
"Prospit",
107+
"The Medium"
108+
]
109+
},
110+
{
111+
"category": "Entertainment: Comics",
112+
"type": "multiple",
113+
"difficulty": "easy",
114+
"question": "When was Marvel Comics founded?",
115+
"correct_answer": "1939",
116+
"incorrect_answers": [
117+
"1932",
118+
"1951",
119+
"1936"
120+
]
121+
}
122+
]

Day-17-QuizProject/MCQ/main.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from data import question_data
2+
from question_model import Question
3+
from quiz_brain import QuizBrain
4+
5+
# List of Question objects
6+
question_bank = []
7+
for question in question_data:
8+
question_object = Question(question['question'], question['correct_answer'], question['incorrect_answers'])
9+
question_bank.append(question_object)
10+
quiz = QuizBrain(question_bank)
11+
12+
while quiz.still_has_questions():
13+
quiz.next_question()
14+
15+
print("You've completed the quiz")
16+
print(f"Your final score was {quiz.score}/{quiz.question_number}")
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import random
2+
class Question:
3+
def __init__(self, q_text, q_answer, q_options):
4+
self.text = q_text
5+
self.answer = q_answer
6+
self.options = q_options
7+
self.options.append(self.answer)
8+
random.shuffle(self.options)

Day-17-QuizProject/MCQ/quiz_brain.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
class QuizBrain:
2+
3+
def __init__(self, q_list):
4+
self.question_number = 0
5+
self.question_list = q_list
6+
self.score = 0
7+
8+
def still_has_questions(self):
9+
return self.question_number < len(self.question_list)
10+
11+
def next_question(self):
12+
question = self.question_list[self.question_number]
13+
self.question_number += 1
14+
print(f"Q.{self.question_number}: {question.text}")
15+
for (index,option) in enumerate(question.options):
16+
print(f"\t{index+1}. {option}")
17+
user_answer = int(input("1/2/3/4: "))
18+
user_answer = question.options[user_answer-1]
19+
self.check_answer(user_answer,question.answer)
20+
21+
def check_answer(self, user_answer, correct_answer):
22+
if user_answer.title() == correct_answer:
23+
print("You got it right!")
24+
self.score += 1
25+
else:
26+
print("That's wrong.")
27+
print(f"The correct answer was: {correct_answer}.")
28+
print(f"Your current score is:{self.score}/{self.question_number}\n")

0 commit comments

Comments
 (0)