Question Detail 78. If new operator is used, then the constructor function is ? Copy constructorDefault constructorStatic constructorDynamic constructor Answer: Option D Similar Questions : 1. What is purpose of abstract class ? to provide help with database connectivity.to provide data input to other classes.to provide security to other classes.to provide an appropriate base class from which other classes can inherit. Answer: Option D 2. The symbol ** __ . can be overloaded by changing its datatype.cannot be overloaded, as on overloading its meaning shall be changed.can be overloaded.cannot be overloaded as it is not a C++ operator. Answer: Option D 3. In C++ Functions can returns ? arraysreferenceobjectsall of above Answer: Option D 4. Which variables cannot be declared ? structurepointerclassvoid Answer: Option D 5. int *ptr[5]; a pointer of 5 int elementsan array of 5 int pointersan array of 5 elements returning an int valuenone of above Answer: Option B Read more from - C++ Programming Questions Answers - Set 2