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 |
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;
You want to link a c++ program to c functions. How would you do it?
Is c++ vector dynamic?
Is it possible to pass an object of the same class in place of object reference to the copy constructor?
Which c++ operator cannot overload?
How a modifier is similar to mutator?
What is the difference between a definition and a declaration?
Define namespace in c++?
What is class in c++ with example?
What do you mean by delegate? Can a user retain delegates?
What is private public protected in c++?
What is array give example?