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 code reusability in c++?
How will you call C functions from C ++ and vice-versa?
Why we use #include conio h in c++?
What is protected inheritance?
Explain differences between new() and delete()?
Which programming language is best?
Is overriding possible in c++?
What is jump statement in C++?
What is token c++?
What is a class definition?
What is a constructor and how is it called?
Can we inherit constructor in c++?
What are advantages of using friend classes?
Is arr and &arr are same expression for an array?
What is functions syntax in c++?