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 |
How const functions will be treated by compiler?
What is the use of c++ programming language in real life?
Differentiate between late binding and early binding. What are the advantages of early binding?
What is #include math h in c++?
How do you define a class in c++?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What are special characters c++?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is Memory Alignment?
What does ctime() do?
Which c++ operator cannot overload?
What should main() return in c and c++?