Multiple Choice
How is creating a subclass of an existing class different from copying the code from the existing class to a new file?
A) delete all the methods that don't have to change
B) you don't need an __init__ method
C) the name of the subclass is in parentheses of the class header
D) no methods need be created or modified
Correct Answer:

Verified
Correct Answer:
Verified
Q40: When considering the ArrayBag class and the
Q41: What is one of the primary purposes
Q42: A class that uses lists can use
Q43: An instance variable that refers to an
Q44: When creating the AbstractCollection class, which methods
Q45: In which situation is a search unnecessary
Q46: A class that inherits properties from another
Q47: When a programmer calls the next function
Q48: When implementing the _init_ method in the
Q50: Which of the following is true about