Multiple Choice
When you finish writing the abstract class, what must the subclasses do to use it?
A) reference the abstract class in their __init__ method.
B) copy the code to the subclass file
C) nothing, the abstract class is automatically included in the subclass
D) import the abstract class
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q11: An instance variable is considered redundant if
Q12: In the following code for the ArrayBag
Q13: The easiest way to take advantage of
Q14: Which of the following is true about
Q15: Which of the following is NOT a
Q17: To distinguish a method in the parent
Q18: What method is called when the in
Q19: In the case of the AbstractCollection class,
Q20: When a class is customized using inheritance,
Q21: In the ArraySortedBag class, why must the