Like constructors, can there be more than one destructors in a class?
A) Yes
B) No
C) Can’t say
D) Less information provided
Solution: B is correct
There can be only one destructor in a class. Destructor’s signature is always ~ClassNam() and they can not be passed arguments.