Question Detail What is actual syntax of destructor in c++ ? !Classname( )@Classname( )$Classname( )~Classname( ) Answer: Option D Similar Questions : 1. << operator is ? stream extraction operatorstream insertion operatorleft shift operatorright shift operator Answer: Option B 2. int *ptr[5]; a pointer of 5 int elementsan array of 5 int pointersan array of 5 elements returning an int valuenone of above Answer: Option B 3. Inheritance is transitive in nature. TrueFalse Answer: Option A 4. Size of a char is ? 1234 Answer: Option A 5. What is object in C++ ? Object is part of syntax of a class.Object is datatype of a class.Object is an instance of a class.Object is function of a class. Answer: Option C Read more from - C++ Programming Questions Answers - Set 2