Question Detail How we can define member function outside the class ? Using unionUsing structureUsing pointersUsing scope resolution Answer: Option D Similar Questions : 1. Only one copy of the class is inherited, when it is defined as ? virtualpublicstaticprivate Answer: Option A 2. When a structure refers to itself, it is known as ? encapsulated structurenested structurerecursive structureself-referential structure Answer: Option D 3. Explicit call to a constructor means ? Not providing the construction name at allIs the shorthand methodProviding the constructor name explicitly to invoke itProviding the constructor name implicitly to invoke it Answer: Option C 4. When one class inherits from the base class, then the original class is called ? derived classbase classsub classbasic class Answer: Option B 5. We can do constructor overloading in C++ ? TrueFalse Answer: Option BExplanation:constructor overloading can be done in C++. Read more from - C++ Programming Questions Answers - Set 2