Multiple choice Which of the following statements is/are false? We cannot create virtual constructor in C++. We cannot create virtual destructors in C++. We can define pure virtual destructor also in our program. Both (2) and (3) Both (1) and (2) Reveal answer Fill a bubble to check yourself B Correct answer Explanation This is not a true statement. There is a necessary condition to make the destructor as virtual as our program can not manage the memory allocated by downward subclasses and it may be leaked.