For method overriding to occur, the method in the derived class must have the same _______ and return type as the method in the base class.

  • Method name and arguments
  • Method name and parameters
  • Method signature and name
  • Method signature and parameters
Method overriding in Python requires that the method in the derived class has the same method name and arguments (parameters) as the method in the base class.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *