What do you mean by abstraction in C++?
Data abstraction is one of the most essential and important feature of object oriented programming in C++. Abstraction means displaying only essential information and hiding the details. A Class can decide which data member will be visible to outside world and which is not.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is c++ a programming language?
Can user-defined object be declared as static data member of another class?
What is the best c++ compiler?
Is it possible for a member function to use delete this?
Can you declare an array without a size in c++?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
What is an iterator?
check whether a no is prime or not.
When there is a global variable and local variable with the same name, how will you access the global variable?
List down the guideline that should be followed while using friend function.
What is virtual methods?
diff between pointer and reference in c++?