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 is a linked list in c++?
What are the storage qualifiers?
How const int *ourpointer differs from int const *ourpointer?
How do you flush std cout?
Define a constructor?
Can we declare a base-class destructor as virtual?
What is auto used for in c++?
How to give an alternate name to a namespace?
Explain register storage specifier.
What is setw manipulator in c++?
How a macro differs from a template?
What does namespace mean in c++?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Which programming language is best to learn first?
which operator is used for performing an exponential operation a) > b) ^ c) none