What are different types of polymorphism supported by C++
Answers were Sorted based on User's Feedback
Answer / ammu
polymorphism occurs in 2 levels one at compile time and
another at run time
compile time polymorphism includes function overloading and
operator overloading
run time polymorphism includes virtual function
| Is This Answer Correct ? | 22 Yes | 3 No |
Answer / minakshi
runtime polymorphism
1.function overloading
2,operator overloading
compile time
1.virtual function
| Is This Answer Correct ? | 7 Yes | 18 No |
How does c++ structure differ from c++ class?
is throwing exception from a constructor not a good practice ?
What is a memory leak c++?
Is java based off c++?
What is expression parser in c++
What are friend classes? What are advantages of using friend classes?
What are static member functions?
What is exception handling? Does c++ support exception handling?
Explain the purpose of the keyword volatile.
What is a dll entry point?
What is a constructor in c++ with example?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort