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 is a condition in java?
What is lazy programming?
Which is fastest collection in java?
What is off heap memory?
What is jit and its use?
int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b; System.out.println("The value is"+a+b+c;
What is the default value of an object reference declared as an instance variable?
What does i ++ mean in Java?
How many classes can any class inherit java?
What is the final class?
What are the different conditional statements?
What is constructor chaining and how is it achieved in java?