What is data abstraction? Elaborate with example?

Answers were Sorted based on User's Feedback



What is data abstraction? Elaborate with example?..

Answer / dsr

hidding unneccessary data from userdetails, is called
abstraction.
Example:TV Remote.
Buttons are cisible.circuit is not visible.(Hidden)

Is This Answer Correct ?    104 Yes 9 No

What is data abstraction? Elaborate with example?..

Answer / mahi

Data abstraction means in simple words its nothing but we
do not represent the unnecessary details to the user.
It means if you want to take the medicine .u will use it
regarding prescription with out knowing of the details of
drugs that are used in manufacturing of the medicine
that's it

Is This Answer Correct ?    30 Yes 5 No

What is data abstraction? Elaborate with example?..

Answer / rajashree

we noted that a procedure used as an element in creating a
more complex procedure could be regarded not only as a
collection of particular operations but also as a
procedural abstraction. That is, the details of how the
procedure was implemented could be suppressed, and the
particular procedure itself could be replaced by any other
procedure with the same overall behavior. In other words,
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.

Is This Answer Correct ?    26 Yes 22 No

What is data abstraction? Elaborate with example?..

Answer / 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

More Core Java Interview Questions

What modifiers can be used with a local inner class?

2 Answers  


what is the difference between ArrayList and Vector

19 Answers   KPIT, Sasken, Satyam, Span Infotech, Wipro,


What are the different types of methodologies?

0 Answers  


Can a class extend abstract class or interface? why

4 Answers   Wipro,


Explain jvm, jre, and jdk?

0 Answers  






what is the difference between preemptive scheduling and time slicing? : Java thread

0 Answers  


How is Object Oriented Programming different from Procedure Oriented Programming?

0 Answers   Amdocs,


What do you mean by multithreaded program?

0 Answers  


Can we override tostring method in java?

0 Answers  


How can two threads be made to communicate with each other?

3 Answers   HCL,


Can we call a non-static method from inside a static method?

0 Answers  


I have one POJO class(Java bean class), it has two variables for that it has setters and getters. Now i have created two objects for that class and i have set the data for those variables through this two objects. Now question is i want check whether those two objects have same data or not, for this write a program? Thanks, Bose.

2 Answers   Oracle,


Categories