Answer:
The answer to this question is the option "D".
Explanation:
In this question, option d that is "It releases the object's memory" is not true. Because A destructor a special member function whose task is to destroy the object of the constructor it works when it called. Destructor is used for free the resources of the object that may have acquired during its lifetime. The destructor is as same as the class name except that in the destructor we the tilde symbol (~) and it is not called automatically.
Syntax:
~ class_name ()
{
//body of destructor.
}