Python Programming - Polymorphism - Discussion

Discussion Forum : Polymorphism - General Questions (Q.No. 27)
27.
How does Python achieve polymorphism through method overriding?
By allowing a function to take different types of arguments
By automatically resolving conflicts using the first defined method
By using the C3 linearization algorithm to determine method resolution order
By allowing a subclass to provide a specific implementation for a method defined in the superclass
Answer: Option
Explanation:
Polymorphism through method overriding in Python allows a subclass to provide a specific implementation for a method defined in the superclass.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.