If text is a pointer of class String then what is meant by the following statement? text = new String [5];?

(A) Creates an array of 5 string objects statically
(B) Creates an array of 5 string objects dynamically
(C) Creates an array of pointers to string
(D) Creates a string Object

When the compiler overloads the assignment (=) operator by default then __.

(A) compiler does member wise assignment.
(B) compiler does not allow default overload of assignment (=) operator
(C) member of the class are not assigned properly
(D) None of the given options

Consider the following code segment: class M {friend int operator!(const M &);}; Let assume if s is an object of the class then function is implemented as __.

(A) Member function
(B) Non-member function
(C) Binary operator function
(D) None of the given options

error: Content is protected !!