There are two types of polymorphism in C++, compile-time and run-time polymorphism. Function overloading and operator overloading are used to achieve compile-time polymorphism. Function overriding is used to achieve run-time polymorphism.
Read moreWhat are different types of polymorphism?
In Object-Oriented Programming (OOPS) language, there are two types of polymorphism as below:
Read moreWhat is polymorphism and how many types?
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 are the four types of polymorphism?
Ad-hoc, Inclusion, Parametric & Coercion Polymorphisms
Read more