-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz_database.py
More file actions
24 lines (11 loc) · 882 Bytes
/
quiz_database.py
File metadata and controls
24 lines (11 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
question_bank=[{"text": "The ability of one class to acquire methods and attributes of another class is called_______","answer":"A"},
{"text": "Which of the following is a type of Inheritence","answer":"D"},
{"text": "What type of Inheritence has multiple subclassess to a single superclass?","answer":"C"},
{"text": "What is the depth of Multiple Inheritence in Python?","answer":"C"},
{"text": "What doe MRO Stands for?","answer":"B"}
]
options=[["A.Inheritence","B.Abstraction","C.Polymorphism","D.Objects"],
["A.Single","B.Double","C.Multiple","D.Both A & C"],
["A.Multiple Inheritence","B.Multilevel Inheritence","C.Hierarchical Inheritence","D.None of these"],
["A.Two level","B.Three level","C.Any level","D.None of these"],
["A.Method Recursive Object","B.Method Resoultion Order","C.Main Resoultion Order","D.Multiple Resoultion Order"]]