Multiple choice

___________ is a blueprint or prototype that defines the variables and the methods common to all objects of a certain kind.

  1. Class

  2. Inheritance

  3. Polymorphism

  4. Aggregation

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

A class serves as a blueprint or template that defines the structure and behavior common to all objects of that type. It specifies what data (variables/attributes) and operations (methods/functions) every object created from that class will have. Objects are instances created from this blueprint.