Multiple choice Which of the following statements is FALSE regarding destructors? A destructor can be declared only when a constructor has also been declared. We cannot overload destructors. It has the same name as of the class. During inheritance, the child class destructor is invoked first and then the parent class destructor. Reveal answer Fill a bubble to check yourself A Correct answer Explanation Declaring a destructor does not need a constructor to be declared. A destructor can be declared even when there is no constructor.