what is data Abstraction? and give example
Answer Posted / varun k. singh
The concept of abstraction relates to the idea of hiding data that are not needed for presentation. The main idea behind data abstraction is to give a clear separation between properties of data type and the associated implementation details. This separation is achieved in order that the properties of the abstract data type are visible to the user interface and the implementation details are hidden. Thus, abstraction forms the basic platform for the creation of user-defined data types called objects. Data abstraction is the process of refining data to its essential form. An Abstract Data Type is defined as a data type that is defined in terms of the operations that it supports and not in terms of its structure or implementation.
In object-oriented programming language C++, it is possible to create and provide an interface that accesses only certain elements of data types. The programmer can decide which user to give or grant access to and hide the other details. This concept is called data hiding which is similar in concept to data abstraction.
Reasons for the need of Abstraction
Flexibility in approach:
By hiding data or abstracting details that are not needed for presentation, the programmer achieves greater flexibility in approach.
Enhanced Security:
Abstraction gives access to data or details that are needed by users and hide the implementation details, giving enhanced security to application.
Easier Replacement:
With the concept of abstraction in object-oriented programming language, it is possible to replace code without recompilation. This makes the process easier and saves time for users.
Modular Approach:
In object-oriented programming language C++, the abstraction concept helps users to divide the project application into modules and test each of them separately. Then all modules are integrated and ultimately tested together. This approach makes the application development easier.
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the precedence when there is a global variable and a local variable in the program with the same name?
What is name hiding in c++?
Can manipulators fall in love?
What is a static member?
Where and why do I have to put the "template" and "typename" keywords?
Which bit wise operator is suitable for turning off a particular bit in a number?
What is fflush c++?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
List down the guideline that should be followed while using friend function.
Write a program to interchange 2 variables without using the third one.
Can we make any program in c++ without using any header file and what is the shortest program in c++.
What is a multimap c++?
Explain differences between alloc() and free()?
What is the extension of c++?
How delete [] is different from delete?