What do you mean by abstraction in C++?



What do you mean by abstraction in C++?..

Answer / hrpynux@gmail.com

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

Post New Answer

More C++ General Interview Questions

class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


You want to link a c++ program to c functions. How would you do it?

0 Answers  


Is c++ vector dynamic?

0 Answers  


Is it possible to pass an object of the same class in place of object reference to the copy constructor?

0 Answers  


Which c++ operator cannot overload?

0 Answers  






How a modifier is similar to mutator?

0 Answers  


What is the difference between a definition and a declaration?

0 Answers  


Define namespace in c++?

0 Answers  


What is class in c++ with example?

0 Answers  


What do you mean by delegate? Can a user retain delegates?

0 Answers  


What is private public protected in c++?

0 Answers  


What is array give example?

0 Answers  


Categories