-
Which is called on allocating the memory for the array of objects?
-
- method
- destructor
- constructor
- All of above
- None of these
Correct Option: C
When you allocate memory for an array of objects, the default constructor must be called to construct each object. If no default constructor exists, you’re stuck needing a list of pointers to objects.