Multiple choice technology programming languages

The concept of hiding the implementation details of a class and allowing access to the class through a public interface is called as

  1. Encapsulation

  2. Polymorphism

  3. Overloading

  4. Overriding

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

Encapsulation is the OOP concept of wrapping data and code into a single unit (class) while restricting direct access to internal details and exposing functionality only through public methods. Polymorphism, overloading, and overriding relate to method behaviors, not data hiding.