Given the following code snippet, identify the subclass and superclass:
python
Copy code
class ChoiceQuestion(Question):
def __init__(self):
pass
a) Subclass: Question, Superclass: ChoiceQuestion
b) Subclass: ChoiceQuestion, Superclass: Question
c) Both are subclasses
d) Both are superclasses