Solved

In the Constructor for the ArrayBag Class Shown Below, What

Question 25

Multiple Choice

In the constructor for the ArrayBag class shown below, what is the missing code?
Def __init__(self, sourceCollection = None) :
< missing code >
AbstractBag.__init__(self, sourceCollection)


A) items.add(self)
B) self.items = Array(ArrayBag.DEFAULT_CAPACITY)
C) self.items = ArrayBag.add(sourceCollection)
D) add.items(self, sourceCollection)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions