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
Questions by shanky_06 answers by shanky_06
Editorial / Best Answer
syamala235Polymorphism 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