C++
Programming and Technical
What is polymorphism ?
Read Solution (Total 2)
-
- poly means many
where as morphisim is forms
so one in many forms.. - 10 years agoHelpfull: Yes(0) No(0)
- The word polymorphism means having many forms. Typically, polymorphism occurs when there is a hierarchy of classes and they are related by inheritance.
C++ polymorphism means that a call to a member function will cause a different function to be executed depending on the type of object that invokes the function. - 10 years agoHelpfull: Yes(0) No(0)
C++ Other Question