What is the sequence of event(s) when allocating memory using new operator?

(A) Only block of memory is allocated for objects
(B) Only constructor is called for objects
(C) Memory is allocated first before calling constructor
(D) Constructor is called first before allocating memory

What is the functionality of the following syntax to delete an array of 5 objects named arr allocated using new operator? delete arr ;?

(A) Deletes all the objects of array
(B) Deletes one object of array
(C) Do not delete any object
(D) Results into syntax error

error: Content is protected !!