Multiple choice

_______ refers to a class replicating some features or properties from another class

  1. Abstraction

  2. Inheritance

  3. Polymorphism

  4. Data hiding

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

Inheritance allows a derived class to replicate features and properties from a base class, promoting code reuse. Option A (Abstraction) hides implementation details, Option C (Polymorphism) allows same interface different behaviors, and Option D (Data hiding) encapsulates private members - none describe 'replicating features'.