Editorial / Best Answer
syamala235
Polymorphism in simple terms means one name many forms. Polymorphism enables one entity to be used as a general category for different types of actions. The specific action is determined by the exact nature of the situation.
Polymorphism exists in three distinct forms in Java:
• Method overloading
• Method overriding through inheritance
• Method overriding through the Java interface
Need of Polymorphism
Profile Answers by shanky_06 Questions by shanky_06
Questions by shanky_06 answers by shanky_06
Editorial / Best Answer
syamala235Profile Answers by syamala235 Questions by syamala235
Polymorphism in simple terms means one name many forms. Polymorphism enables one entity to be used as a general category for different types of actions. The specific action is determined by the exact nature of the situation.
Polymorphism exists in three distinct forms in Java:
• Method overloading
• Method overriding through inheritance
• Method overriding through the Java interface
Related Answered Questions
Related Open Questions