Question

    In OOP, which concept allows a subclass to provide a

    specific implementation of a method already defined in its parent class?
    A Encapsulation Correct Answer Incorrect Answer
    B Method Overloading Correct Answer Incorrect Answer
    C Method Overriding Correct Answer Incorrect Answer
    D Abstraction Correct Answer Incorrect Answer
    E Composition Correct Answer Incorrect Answer

    Solution

    Method overriding allows a subclass to redefine a method of its parent class to provide more specific behavior. 1. Dynamic Binding: Overriding enables dynamic (runtime) polymorphism, allowing a subclass method to be invoked via a parent class reference. 2. Specialization: It customizes inherited behavior, making objects more precise in functionality. For example, a generic draw() method in a Shape class can be overridden by a Circle subclass to draw circles. 3. Liskov Substitution Principle: Overriding ensures subclass objects can seamlessly replace parent class objects without affecting system behavior. Option C exemplifies OOP’s adaptability and extendability by redefining methods at runtime. Why Other Options Are Incorrect: • A) Encapsulation: Manages data access, unrelated to redefining methods. • B) Method Overloading: Involves multiple methods with the same name but different parameters, unrelated to inheritance. • D) Abstraction: Focuses on defining essential features, unrelated to runtime behavior customization. • E) Composition: Relates to object containment, not method redefinition.

    Practice Next