Question Detail What is actual syntax of destructor in c++ ? !Classname( )@Classname( )$Classname( )~Classname( ) Answer: Option D Similar Questions : 1. What is class in c++ ? When you define a class, you define a blueprint for a data type.When you define a class, you make get more funtionality.When you define a class, you define the logic. When you define a class, you make debugging. Answer: Option A 2. Which is more memory efficient ? structureunionboth use same memorydepends on a programmer Answer: Option B 3. What among following is a generic class ? Function TemplateClass TemplateInherited TemplateNone of above Answer: Option B 4. Size of a char is ? 1234 Answer: Option A 5. The objects can directly access ? Public membersPrivate membersBoth of aboveNone of above Answer: Option A Read more from - C++ Programming Questions Answers - Set 2