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
what are the iterator and generic algorithms.
Define what is constructor?
What causes a runtime error c++?
Give 10 points of differences between C & C++.
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?
Why is main an int?
Why do we use setw in c++?
what is c++
What is class invariant in c++?
What is the identity function in c++? How is it useful?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
What is the copy-and-swap idiom?
Can we distribute function templates and class templates in object libraries?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
what is C++ objects?