what is polymorphism
Answers
Answered by
0
Hey!
Polymorphism is the ability for a message or data to be processed in more than one form. C++ implements polymorphism through virtual functions, overloaded functions and overloaded operators.
Polymorphism is the ability for a message or data to be processed in more than one form. C++ implements polymorphism through virtual functions, overloaded functions and overloaded operators.
Answered by
0
Answer:
Polymorphism is the process of using a function for more than one purpose.
Explanation:
If we have developed a function to perform the addition then this process will find the sum of two numbers passed to the function. In case the passed arguments are strings, the function will produce the concentrated strings.
Similar questions