what is data Abstraction? and give example
Answer Posted / sujit
it is process of representing the essential features
without knowing the background details,
we use the member functions and data members in the class
but we dont know how it works.
EX.
class abc
{int l;
void getdata();
};
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are protected members in c++?
What is a pdb file?
What is a rooted hierarchy?
When is the copy constructor called?
What is c++ flowchart?
How do you flush std cout?
Is c++ primer good for beginners?
Explain object slicing in c++?
Is c++ free?
Is swift faster than c++?
What is a singleton class c++?
When should I use unitbuf flag?
What is the error in the code below and how should it be corrected?
Do vectors start at 0 c++?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.