The "virtual" specifier in a member function enables which
one of the following?
a) Monmorphism
b) Late binding
c) Metamorphism
d) Solomorphism
e) Inheritance
Answer Posted / leo theboss
Metamorphism
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How would you implement a substr() function that extracts a sub string from a given string?
What is a tree in c++?
Why do we use constructor?
What is the difference between an external iterator and an internal iterator?
What is the difference between ++ count and count ++?
Is map ordered c++?
Define 'std'.
What is the header file for setw?
What are friend classes? What are advantages of using friend classes?
Explain method of creating object in C++ ?
Describe the syntax of single inheritance in C++?
Why is it necessary to use a reference in the argument to the copy constructor?
In the derived class, which data member of the base class are visible?
Is map sorted c++?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D