Object-Oriented Programming (OOP)
What does Class refer to?
- A. An OOP principle that hides complex implementation details and exposes only essential features.
- B. A class that cannot be instantiated on its own and may contain abstract methods to be implemented by subclasses.
- C. An OOP concept that allows objects of different classes to be treated through a common interface.
- D. A blueprint that defines the properties and behaviors that objects created from it will have. ✓
Correct answer
D. A blueprint that defines the properties and behaviors that objects created from it will have.
Explanation
Class refers to a blueprint that defines the properties and behaviors that objects created from it will have.