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 the difference between while and do while loop?
What is extern c++?
Explain about Garbage Collector?
Is c++ still being used?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
What will the line of code below print out and why?
What is the prototype of printf function?
What is main function in c++ with example?
Explain the differences between list x; & list x();.
How important is c++?
what are the iterator and generic algorithms.
Why c++ is the best language?
How many different levels of pointers are there?
What is the use of structure in c++?
Why is polymorphism useful?