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
What is the use of this pointer in c++?
What is the use of :: operator in c++?
Explain queue. How it can be implemented?
What are the three forms of cin.get() and what are their differences?
What is algorithm in c++ programming?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Is c++ the hardest programming language?
How do I get good at c++ programming?
What is the difference between the functions memmove() and memcpy()?
How do you declare a set in c++?
What is constructor in C++?
Which format specifier is used for printing a pointer value?
What are the steps in the development cycle?
Explain what you mean by a pointer.
What is the difference between a type-specific template friend class and a general template friend class?