Latest Answer : Polymorphism is mainly divided into :1) Run Time polymorphism: a) Virtual function2) Compile Time Polymorphism : a) function overloading ...
Latest Answer : Poly [many] morph [form] as the name says many forms is supported. Two types of Polymorphism are operator overloading and function overloading.operator overloading => +operator can be implemented to add numbers or string or even if one wishes to subtract ...
Latest Answer : Polymorphism is the ability to assume many forms. In short it refers to several methods / operators sharing the same name but having different parameter list and different implementations. Variables also can be polymorphic. There are two ways polymorphism ...
Latest Answer : Dynamic polymorphism is also known as runtime polymorphism.It is achieved by means of virtual functions. Depending on the type of object referred by a variable the decision about the method to be called (whether to call base class implementation or the ...