what is data Abstraction? and give example
Answer Posted / kamal lochan jena.
It is process of creating a new data_type using encapsulated
items.
Ex: class Name
{
int age;
char Name[20];
public:
getdata();
putdata();
};
Here the class body contains the encapsuleted data items.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what are accessor methods?
Is c++ an oop?
How a modifier is similar to mutator?
Differentiate between a pointer and a reference with respect to c++.
What are the benefits of oop in c++?
How can a struct in c++ differs from a struct in c?
what are the iterator and generic algorithms.
what are the iterator and generic algorithms.
Can you please explain the difference between using macro and inline functions?
What do the header files usually contains?
How const int *ourpointer differs from int const *ourpointer?
Explain one method to process an entire string as one unit?
When is dynamic checking necessary?
Is there a c++ certification?
What are files in c++?