Question Detail Which is more memory efficient ? structureunionboth use same memorydepends on a programmer Answer: Option B Similar Questions : 1. Which among following is correct way of declaring object of a class ? Classname Objectname;Class Classname Objectname;Class Classname Object Objectname;Classname Object Objectname; Answer: Option A 2. Enumerator will allocate the memory when its variables are defined. TrueFalse Answer: Option A 3. 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 4. The derived class constructor never passes any values to base class constructorcan pass arguments only to one base class constructor functionis responsible for passing the entire test of arguments needed by base class constructorsnone of above Answer: Option C 5. A variable is defined within a block in a body of a function. Which of the following are true ? It is visible from the point of definition to the end of the program.It is visible throughout the function.It is visible from the point of definition to the end of the block.It is visible throughout the block. Answer: Option B Read more from - C++ Programming Questions Answers - Set 2