Question

    Which of the following is an example of Polymorphism

    in Object-Oriented Programming?
    A A method that can take multiple forms, such as being overridden in a subclass. Correct Answer Incorrect Answer
    B A class that inherits properties from another class Correct Answer Incorrect Answer
    C A class that uses another class as a part of its definition Correct Answer Incorrect Answer
    D A way to restrict access to certain class members Correct Answer Incorrect Answer
    E A way of dividing a complex system into smaller components. Correct Answer Incorrect Answer

    Solution

    Polymorphism allows one interface to represent multiple implementations . This can occur through method overriding , where a subclass provides a specific implementation for a method declared in its parent class, or method overloading , where methods have the same name but different parameters. For instance, an Animal class might have a sound() method overridden in subclasses like Dog or Cat to produce specific sounds. Polymorphism enables flexibility and extensibility, as the same method can be applied differently based on the object. Why Other Options Are Incorrect : 2. A class that inherits properties from another class : This is Inheritance , not Polymorphism. 3. A class that uses another class as a part of its definition : This describes Composition , where objects are combined to form complex systems. 4. A way to restrict access to certain class members : This is Encapsulation , not Polymorphism. 5. A way of dividing a complex system into smaller components : This is closer to the concept of Modularization , unrelated to Polymorphism.

    Practice Next