what is data Abstraction? and give example
Answer Posted / p.c. pandey
Data abstraction is a special type of OOP(Object Oriented
Programming) concept, by which a programmer can build the
sequre program with the true meaning of the data without
including back ground details or it's explanation.
Data abstraction also provides essential features to the
programmer.
for exampel:-
struct emp
{
char name[10};
int age;
char add[25];
}
struct emp x;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which programming language is best?
What is const pointer and const reference?
Explain what are accessor methods?
Write a recursive program to calculate factorial in c++.
Which programming language should I learn first?
what kind of projects are suitable for c and c++
What is scope in c++ with example?
What are advantages of using friend classes?
Is it possible to have a recursive inline function in c++?
When are exception objects created?
What is fixed in c++?
What does count ++ do in c++?
What is type of 'this' pointer?
Explain terminate() and unexpected() function?
Can a built-in function be recursive?