manaliKnowledge Contributor
What is polymorphism in programming?
What is polymorphism in programming?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
Polymorphism is a feature of object-oriented programming that allows objects of different classes to be treated as objects of a common superclass. It enables methods to perform different functions based on the object that is calling them. This can be achieved through method overriding (in subclasses) or method overloading (multiple methods with the same name but different parameters).