InterviewSolution
Saved Bookmarks
| 1. |
What Is Dynamic Or Run Time Polymorphism? |
|
Answer» Dynamic or Run time polymorphism is also known as METHOD overriding in which call to an OVERRIDDEN function is resolved during run time, not at the compile time. It MEANS having TWO or more methods with the same name,same signature but with different implementation. Dynamic or Run time polymorphism is also known as method overriding in which call to an overridden function is resolved during run time, not at the compile time. It means having two or more methods with the same name,same signature but with different implementation. |
|