Answer:
Option D: The method m is not overridden in B. B inherits the method m from A and defines an overloaded method m in B.
Explanation:
Method overriding in Java is done when you want a child class to give its own implementation to a method that is already provided by the parent class. The method in the parent class will be called overridden method, and the child class will be overriding method.