Polymorphism is the ability to process objects differently on the basis of their class and data types . There are two types of polymorphism in Java: compile time polymorphism and run time polymorphism in java. This java polymorphism is also referred to as static polymorphisms and dynamic polymorphisms.
Read moreWhat is polymorphism in OOPs with example?
Polymorphism is one of the OOPs feature that allows us to perform a single action in different ways . For example, lets say we have a class Animal that has a method sound() . Since this is a generic class so we can’t give it a implementation like: Roar, Meow, Oink etc.
Read moreWhat does polymorphism in OOPs mean answer?
Polymorphism is the ability of any data to be processed in more than one form . The word itself indicates the meaning as poly means many and morphism means types. Polymorphism is one of the most important concept of object oriented programming language.7 Tem 2019
Read more