Define,
class, object,abstraction,encapsulation
Answers
Answer:
Encapsulation. Abstraction in Object Oriented Programming solves the issues at the design level. Encapsulation solves it implementation level. Abstraction in Programming is about hiding unwanted details
Answer:
defination of object : An object is a software bundle of variables and related methods. You can represent real-world objects using software objects. ... Everything that the software object knows (state) and can do (behavior) is expressed by the variables and methods within that object
defination of abstraction : the act of obtaining or removing something from a source : the act of abstracting something. formal a general idea or quality rather than an actual person, object, or event an abstract idea or quality.
defination of encapsulation : In object-oriented programming, encapsulation refers to the bundling of data with the methods that operate on that data, or the restricting of direct access to some of an object's components.