Polymorphism With Different Classes
Mon 10 August 2026
class Cat:
def sound(self):
print("Meow")
class Dog:
def sound(self):
print("Bark")
def make_sound(animal):
animal.sound()
make_sound(Cat())
make_sound(Dog())
Meow
Bark
Score: 10
Category: chapter4_polymorphism