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 statement? String str[5] = ,String(“Programming”), String(“CS201”)-;?

(A) Default constructor will call for all objects of array
(B) Parameterized constructor will call for all objects of array
(C) Parameterized constructor will call for first 2 objects and default constructor for remaining objects
(D) Default constructor will call for first 3 objects and Parameterized constructor for remaining objects

error: Content is protected !!