For class person, destructor would be
-
`Person
-
~Person
-
:Person
-
None of the above
B
Correct answer
Explanation
In C++, the destructor is named by prefixing a tilde (~) to the class name. For a class named Person, the destructor would be ~Person(), which is automatically called when the object is destroyed.