When implementing the __init__ method in the AbstractBag class, what task should you leave out because it is the responsibility of the subclasses?
A. setting the self.size variable to 0
B. adding items from the source collection
C. initializing the self.items variable
D. checking if a source collection exists
Answer: C
Computer Science & Information Technology