Question Detail How we can define member function outside the class ? Using unionUsing structureUsing pointersUsing scope resolution Answer: Option D Similar Questions : 1. The advantage of declaring a virtual function as pure is ? programs runs fasterearly binding can be achievedyou force any derived class to define its own implementationyou can avoid making the class an abstract class Answer: Option C 2. We can do constructor overloading in C++ ? TrueFalse Answer: Option BExplanation:constructor overloading can be done in C++. 3. Can we define array of classes in c++ ? YesNo Answer: Option A 4. 37. Which of the following statements is false ? Using typedef does not replace the standard C++ data type name with the new nameThe new name defined by typedef, can be used as a type for another typedeftypedef defines new data typesNone of the above Answer: Option C 5. 78. If new operator is used, then the constructor function is ? Copy constructorDefault constructorStatic constructorDynamic constructor Answer: Option D Read more from - C++ Programming Questions Answers - Set 2