Question
#include <new>
#include <iostream>
using namespace std;
struct A
{
virtual ~A() { };
void operator delete(void* p)
{
cout << "A :: operator delete" << endl;
}
};
struct B : A
{
void operator delete(void* p)
{
cout << "B :: operator delete" << endl;
}
};
int main()
{
A* ap = new B;
delete ap;
}
a.
A::operator delete
b.
B::operator delete
c.
Both A::operator delete & B::operator delete
d.
None of the mentioned
Posted under Object Oriented Programming Using C++
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this program?
Similar Questions
Discover Related MCQs
Q. What must be an operand of operator delete?
View solution
Q. How can object be allocated outside the object lifetime?
View solution
Q. Pick out the wrong header file about strings.
View solution
Q. Which is best for coding the standard libary for c++?
View solution
Q. What is meant by vector in the container library contains?
View solution
Q. Pick out the wrong header file.
View solution
Q. What is meant by standard c++ library?
View solution
Q. Pick out parameter for rehash method in unordered_set in c++?
View solution
Q. What is the use of <exception> header
View solution
Q. How many sets of requirements are need in designing a container?
View solution
Q. Which interface in the container is required for storage management?
View solution
Q. Which is present in the basic interface of the allocator interface?
View solution
Q. Which container provides random access iterators?
View solution
Q. Which is used for manually writing lookup table?
View solution
Q. How the member functions in the container can be accessed?
View solution
Q. Which of the following type does the container should define?
View solution
Q. Which are the parameters for the content of the buffer?
View solution
Q. What do vectors represent?
View solution
Q. In which type of storage location are the vector members stored?
View solution
Q. How many vector container properties are there in c++?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Object Oriented Programming Using C++? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!