what do you meant by Runtime Polymorphism?
Answers were Sorted based on User's Feedback
Answer / sayali birari
Dynamic dispatch is a mechanism by which a call to Overridden function is resolved at runtime rather than at Compile time , and this is how Java implements Run time Polymorphism. In dynamic method dispatch,super class refers to subclass object and implements method overriding.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / suraj naik
Method body and Method linking happens at runtime is called
rumtime polymorphism
| Is This Answer Correct ? | 0 Yes | 6 No |
What are the steps that are followed when two computers connect through tcp?
Is zero a natural number?
What is the difference between choice and list?
Difference between static methods, static variables, and static classes in Java.
What are the main uses of this keyword?
How many types of assembly languages are there?
What is a treemap in java?
Given a singly linked list, determine whether it contains a loop or not without using temporary space?
How do you sort a set in java?
List the three steps for creating an object for a class?
What is a string what operation can be performed out with the help of a string?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?