-
-
What is out put of C++ code?
cclass base
{
public:
virtual void display(int i = 10)
{
cout -
-
What is a class?
Class is a user-defined data type in C++. It can be created to solve a particular kind of problem. After creation the user need not know the specifics of the working of a class.
-
What is abstraction?
Abstraction is of the process of hiding unwanted details from the user.
-
-
What is the difference between class and structure?
Structure: Initially (in C) a structure was used to bundle different type of data types together to perform a particular functionality. But C++ extended the structure to contain functions also. The major difference is that all declarations inside a structure are by default public. Class: Class is a successor of Structure. By default all the members inside the class are private.
-
-
C++ Interview Questions
Ans