---
title: "What is meant by Polymorphism?"  
description: "What is meant by Polymorphism?"  
author: "Pushpendra Singh"  
published: 2010-10-25  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/81/what-is-meant-by-polymorphism  
category: "oops"  
tags: ["oops"]  
reading_time: 1 minute  

---

# What is meant by Polymorphism?

Polymorphism literally means taking more than one form. Polymorphism is a characteristic of being able to assign a different behavior or value in a subclass, to something that was declared in a parent class.

## Answers

### Answer by Amit Singh

polymorphism is Poly morph(multi form). It is implemented by method overloading and overriding. The compiler decide which method is to be called at runtime this is called late binding. Polymorphism is a powerful mechanism of OOPS.\
\
\

### Answer by Pushpendra Singh

Polymorphism literally means taking more than one form. Polymorphism is a characteristic of being able to assign a different behavior or value in a subclass, to something that was declared in a parent class.


---

Original Source: https://www.mindstick.com/interview/81/what-is-meant-by-polymorphism

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
