What is data abstraction? Elaborate with example?
Answer Posted / rahul,bit mesra
we could make an abstraction that would separate the way the procedure would be used from the details of how the procedure would be implemented in terms of more primitive procedures. The analogous notion for compound data is called data abstraction. Data abstraction is a methodology that enables us to isolate how a compound data object is used from the details of how it is constructed from more primitive data objects.
The basic idea of data abstraction is to structure the programs that are to use compound data objects so that they operate on ``abstract data.'' That is, our programs should use data in such a way as to make no assumptions about the data that are not strictly necessary for performing the task at hand. At the same time, a ``concrete'' data representation is defined independent of the programs that use the data. The interface between these two parts of our system will be a set of procedures, called selectors and constructors, that implement the abstract data in terms of the concrete representation
| Is This Answer Correct ? | 12 Yes | 9 No |
Post New Answer View All Answers
What is the difference between compiler and jvm?
Which sorting algorithm is in place?
How do you sort a string in java?
Implementations of set interface?
How do you check if two given string are anagrams?
Explain the public class modifier?
What is serial version uid and its importance in java?
What is the difference between hashset and treeset in java?
When parseint method can be used?
Should a main method be compulsorily declared in all java classes?
Given a singly linked list, how will you print out its contents in the reverse order? Can you do it with consuming any extra space?
What is meant by main method?
What is the file type?
Explain about the select method with an example?
Can you call a method in a method?