What does "data abstraction" exactly mean?

Viewed 43683

What does data abstraction refer to? Please provide real life examples alongwith.

16 Answers

Data Abstraction: It is used to provide the necessary information to the user and hide the unnecessary information from the user. It is called data abstraction. It will hide your business logic from outside the world.

Technical Example: Console.WriteLine();

Non Technical Example: TV remote, Car Remote.

More Detail: Data Abstraction with real-time example

Related