Loading

Quipoin Menu

Learn • Practice • Grow

python / Inheritance
exercise
1/5
Exercise 1Python
Question

Create a base class `Animal` with a method `speak()`. Create two subclasses `Dog` and `Cat` that override `speak()`. Demonstrate polymorphism.