what is data Abstraction? and give example
Answers were Sorted based on User's Feedback
Answer / t@run gupta
Data Abstraction:
By this feature of object oriented programming it is
possible to represent the needed information in program
without presenting the details. Also by the feature of data
abstraction it is possible to create user defined data types
and thus increase the power of programming language
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ankit shrivastav
abstraction refers to the act of representing essential features without including the background details or explanations
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / saikumar jalda
Data abstraction means the mechanism of hiding the data
without effecting the background details is called data
abstratction.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / gomathi
Data Abstraction is an act of representing essential
details without including background details which is
unnecessary.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / kazumi67
Data abstraction retrieves data efficiently. The need for
efficiency has led designers to use complex data stuctures
to represent data in the database.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / faheemullah
Abstraction the process of recognizing and focusing on
important characteristics of a objet. and leaving un wanted
characteristics of that object. Example
Doctor see patient: the doctor is intrested in name,
height, weigth, age, blood group, previous and existing
disease of a person. doctor not intrested degree of study,
work experience, etc............
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / kishore kumar
data abstraction is a process of representing the essential
features without including implementation details.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / nitin
Data abstraction is tearing the pages of the book and keeping only the summary page..
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / pavan
Data abstraction s nothing but deifing the highlights and
including every thing in the function
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / vidula & akshta
It is selective examination of certain aspects of
problem.........
| Is This Answer Correct ? | 0 Yes | 1 No |
Which operations are permitted on pointers?
Why is it difficult to store linked list in an array?
What is private public protected in c++?
Is c++ the hardest language?
Explain the purpose of the keyword volatile.
How do you show the declaration of a virtual constructor?
Define the operators that can be used with a pointer.
Is nan a c++?
What is a dll entry point?
How much do c++ programmers make?
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.
What is a local variable?