What is an abstraction?

What is an abstraction?

1 Like

Data abstraction is an oops concept where we show only the limited information to the user and hide the irrelevant ones thereby ensuring code reusability, security and comprehensive code structure.

we can implement abstraction in C++, using a class and bundle data and functions into a single unit and using access specifiers to control access to these data and functions.