what is data Abstraction? and give example
Answer Posted / rohit shori
data abstraction
3 types:-
Physical level describes how a record (e.g., customer) is
stored.
Logical level: describes data stored in database, and the
relationships among the data.
type customer = record
name : string; street :
string; city : integer; end;
View level: application programs hide details of data
types. Views can also hide information (e.g., salary) for
security purposes.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is pointer in c++ with example?
Name the operators that cannot be overloaded in C++?
Is java as fast as c++?
When we use Abstract Class and when we use Interface?where we will implement in real time?
Who discovered c++?
Explain the difference between using macro and inline functions?
When are exception objects created?
Is multimap sorted c++?
How does class accomplish data hiding in c++?
What is linked list in c++?
Do vectors start at 0?
What is a manipulative person?
Define upcasting.
Explain the concept of dynamic allocation of memory?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].