what do you meant by Runtime Polymorphism?

Answers were Sorted based on User's Feedback



what do you meant by Runtime Polymorphism?..

Answer / sitaram

The object is binded at the time of run-time is called
runtime Polymorphism.

Is This Answer Correct ?    0 Yes 0 No

what do you meant by Runtime Polymorphism?..

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

what do you meant by Runtime Polymorphism?..

Answer / suraj naik

Method body and Method linking happens at runtime is called
rumtime polymorphism

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More Core Java Interview Questions

Why does java not support pointers?

0 Answers  


This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .

3 Answers  


What is access modifiers?

1 Answers   Cap Gemini,


Explain JMS in detail.

0 Answers   Amdocs,


if we give input as " hi how are you" then the output should be "uoy woh"...it should skip odd words in the input and should reverse even words from the end of string...can anyone help me to write this program in java

1 Answers  






int a=1,b=10; System.out.println(a+b--);

12 Answers   HCL,


what is synchronization and why is it important? : Java thread

0 Answers  


What is persistence ?

2 Answers  


A abstract class extending an abstract class.Super class has both abstract and non-abstract methods.How can we implement abstract and non-abstract mehtods? Explain with snippet

3 Answers  


What are the access modifiers in java?

0 Answers  


How many decimal places is a double?

0 Answers  


What is the difference between error and an exception?

0 Answers  


Categories