Q1: Select the false statement. If an exception is thrown from a constructor:
a. The object being constructed will not be constructed.
b. For an array, destructors for all array elements are called, even if those array
elements have not yet been constructed.
c. The exception can contain the error information that the constructor would not be
able to return in the normal manner.
d. For an object with member objects, and whose outer object has not been constructed,
the destructor is called for the member objects.
When memory allocated with malloc is no longer needed, return that memory to the
system immediately with __________.
a) free_memory
b) free_storage
c) return
d) free
Q1: An explicit constructor: