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
Why do we use string in c++?
Can a constructor return a value?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
Distinguish between new and malloc and delete and free().
Explain how the virtual base class is different from the conventional base classes of the opps.
Define 'std'.
What is the use of setprecision in c++?
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
By using c++ with an example describe linked list?
Should I learn c or c++ or c#?
What is the use of endl in c++?
What is the header file for setw?
What sorting algorithm does c++ use?
Define anonymous class.
Can you sort a set c++?