What do you mean by abstraction in C++?
Data abstraction is one of the most essential and important feature of object oriented programming in C++. Abstraction means displaying only essential information and hiding the details. A Class can decide which data member will be visible to outside world and which is not.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is null pointer and void pointer?
What is a forward referencing and when should it be used?
What are enumerations?
Difference between static global and global?
16 Answers Microsoft, Symphony, Wipro,
Which c++ compiler is best?
Which ide is best for c++?
Can a constructor be private?
What is #include ctype h in c++?
Is map sorted c++?
what are prototypes
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.
Name the operators that cannot be overloaded in C++?