Explain the concept of abstracion and encapsulation with
one example. What is the difference between them?
Answer Posted / aarti ashar
(1)Abstraction:
To implement real world entity into program. Class uses the
concept of abstraction.
->abstraction is a process of mimicking a behavior.
->Simplifying complex reality by modeling classes
appropriate to problem.
->Abstraction is a process that involves identifying the
crucial behavior of an object and eliminating irrelevant
and tedious details.
(2)Encapsulation:
->Binding the data and code to access that data.
Encapsulation only refers to a container which has a data
and its related functions in it.
->When an objects state and behavior are kept together they
are encapsulated. The data and the methods that manipulated
that data are stored together in cohesive unit.
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is pure oop?
Why do we use inheritance?
What do you mean by overloading?
What are the three main types of variables?
What is polymorphism in oop example?
What is the real life example of polymorphism?
Can private class be inherited?
What is ambiguity in inheritance?
what are the realtime excercises in C++?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is polymorphism and why is it important?
How oops is better than procedural?
2. Give the different notations for the class.\
Why is oop useful?
Is enum a class?