📚 Practice Mode
C++ Constructors and Destructors
Learn at your own pace with hints and detailed explanations
1 / 15
Multiple Choice
Which of the following is not a characteristic of destructor function used in C++?
- Destructor must have the same name as the class preceded by a tilde (~).
- Destructor has a return type.
- Destructor cannot take arguments; so it cannot be overloaded.
- There can be only one destructor in each class.
- Destructor cannot be inherited.