Question Detail Which is more memory efficient ? structureunionboth use same memorydepends on a programmer Answer: Option B Similar Questions : 1. Classes in c++ are ? Fundamental data typePrimitive data typeDesired data typeNot defined Answer: Option C 2. 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 3. The members of a class are ? b) by default are private c) are made private by declaring as private d) none of the above] have no visibility by defaultpublic by defaultprivate by defaultprotected by default Answer: Option C 4. Which operators can not be overloaded ? Binary operatorTernary operatorUnary operatorAll can be overloaded Answer: Option B 5. What is actual syntax of destructor in c++ ? !Classname( )@Classname( )$Classname( )~Classname( ) Answer: Option D Read more from - C++ Programming Questions Answers - Set 2