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 #include c++?
Can c++ do everything c can?
What is a container class? What are the types of container classes in c++?
How is static data member similar to a global variable?
What is a base class?
What is a pdb file?
What is constructor and destructor in c++?
Can char be a number c++?
Who invented turbo c++?
What are the advantages of using typedef in a program?
Explain the extern storage classes in c++.
What is a Default constructor?
Explain rethrowing exceptions with an example?
Write a function to find the nth item from the end of a linked list in a single pass.
What is oop in c++?