Multiple choice technology programming languages

_____________ is the process by which one object acquires the properties of another object.

  1. Encapsulation

  2. Class

  3. Inheritance

  4. Polymorphism

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

Inheritance is a fundamental OOP concept where a child class acquires properties and methods from its parent class. This promotes code reuse and establishes an 'is-a' relationship between classes. Encapsulation hides implementation details, while polymorphism allows objects to take multiple forms.