The "virtual" specifier in a member function enables which
one of the following?
a) Monmorphism
b) Late binding
c) Metamorphism
d) Solomorphism
e) Inheritance
Answers were Sorted based on User's Feedback
What does the nocreate and noreplace flag ensure when they are used for opening a file?
What does h mean in maths?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
Is string an object in c++?
What is null pointer and void pointer and what is their use?
What is the operator in c++?
What is flag in computer?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What are vtable and vptr?
What are the advantages of using typedef in a program?
What is the syntax for a for loop?
when can we use copy constructor?