Question Detail What is actual syntax of destructor in c++ ? !Classname( )@Classname( )$Classname( )~Classname( ) Answer: Option D Similar Questions : 1. 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 2. Among following which will give the size of object or type ? CallocMallocSizeofRealloc Answer: Option C 3. The default visibility mode while inheriting is ? publicprotectedprivatemay be any of above Answer: Option C 4. The symbol ** __ . can be overloaded by changing its datatype.cannot be overloaded, as on overloading its meaning shall be changed.can be overloaded.cannot be overloaded as it is not a C++ operator. Answer: Option D 5. Operator overloading is ? giving new meaning to existing c++ operatorsmaking c++ operators work with objectsgiving c++ operators more than they can handlemaking new c++ operators Answer: Option A Read more from - C++ Programming Questions Answers - Set 2