Multiple choice technology programming languages

_________is a relationship

  1. Polymorphism

  2. Inheritance

  3. Overloading

  4. None of these options

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Inheritance represents an 'is-a' relationship between classes, where a derived class inherits properties from a base class. For example, a Car 'is a' Vehicle, so Car inherits from Vehicle. This is a core OOP concept that enables code reuse and hierarchical organization.