The practice of separating the user from the true inner workings of an application through well-known interfaces is known as _________
A.Polymorphism
B.Inheritance
C.Encapsulation
D.Abstraction
Answers
Answer:
The correct option is C. Encapsulation
Explanation:
The practice of separating the user from the true inner workings of an application through well-known interfaces is known as Encapsulation
Encapsulation is a way to restrict the direct access to some components of an object, so users cannot access state values for all of the variables of a particular object. Encapsulation can be used to hide both data members and data functions or methods associated with an instantiated class or object.
In object-oriented PHP encapsulation is a concept of wrapping up or binding up the data members and methods in a single module.
Encapsulation is used to hide the values or state of a structured data object inside a class, preventing unauthorized parties' direct access to them.
For example : As a driver you know how to start the car by pressing the start button and internal details of the starting operations are hidden from you. So the entire starting process is hidden from you otherwise we can tell starting operation is encapsulated from you.
For more :
https://brainly.in/question/30788435
#SPJ6