Question Detail What is default visibility mode for members of classes in C++ ? PrivatePublic ProtectedDepends Answer: Option A Similar Questions : 1. Even if we define a function in a class, then also we need to declare it first. TrueFalse Answer: Option BExplanation:If we define a function in a class, then also we do not need to declare it first. 2. An explicitly defined destructor function may be virtualmay not be virtualwill always be virtualwill never be virtual Answer: Option A 3. Among following which will give the size of object or type ? CallocMallocSizeofRealloc Answer: Option C 4. A virtual base class ? is qualified as virtual in base class definition.do not qualified as virtual in base class definition.allows to inherit more than one copy of the base class members.strict the path of inheritance. Answer: Option A 5. The function used to define the task assigned to an operator is ? Virtual functionStatic functionOperator functionFriend function Answer: Option C Read more from - C++ Programming Questions Answers - Set 2