Problem Statement
Polymorphism in OOP allows what kind of behavior?
Explanation
Polymorphism means 'many forms'. It allows the same method name or operator to behave differently depending on the object or context, such as method overloading (compile time) or overriding (runtime).
Code Solution
SolutionRead Only
class Shape { void draw(){} }
class Circle extends Shape { void draw(){} }