C++ Helpdesk

C++ Programming Interview Questions

Q. What is the full form of OOPS?

OOPS stand for "Object Oriented Programming System."

Q. What is a class?

Class is a blue print which reflects the entities attributes and actions. Technically defining a class is designing an user defined data type.

Q. What is an object?

An instance of the class is called as object.

Q. What is encapsulation?

The process of binding the data and the functions acting on the data together in an entity (class) called as encapsulation.

Q. What is abstraction?

Abstraction refers to hiding the internal implementation and exhibiting only the necessary details.

Q. What is inheritance?

Inheritance is the process of acquiring the properties of the existing class into the new class. The existing class is called as base/parent class and the inherited class is called as derived/child class.

Q. List the types of inheritance supported in C++.

Single, Multilevel, Multiple, Hierarchical and Hybrid.

Q. What is an inline function?

A function prefixed with the keyword inline before the function definition is called as inline function. The inline functions are faster in execution when compared to normal functions as the compiler treats inline functions as macros.

Q. What is a storage class?

Storage class specifies the life or scope of symbols such as variable or functions.

Q. Mention the storage classes names in C++.

The following are storage classes supported in C++
auto, static, extern, register and mutable

Q. What is the role of mutable storage class specifier?

A constant class object’s member variable can be altered by declaring it using mutable storage class specifier. Applicable only for non-static and non-constant member variable of the class.

Q. Distinguish between shallow copy and deep copy.

Shallow copy does memory dumping bit-by-bit from one object to another. Deep copy is copy field by field from object to another. Deep copy is achieved using copy constructor and or overloading assignment operator.

Q. What is a pure virtual function?

A virtual function with no function body and assigned with a value zero is called as pure virtual function.

Q. What is an abstract class in C++?

A class with at least one pure virtual function is called as abstract class. We cannot instantiate an abstract class.

Q. What is a reference variable in C++?

A reference variable is an alias name for the existing variable. Which mean both the variable name and reference variable point to the same memory location. Therefore updation on the original variable can be achieved using reference variable too.

Q. What is role of static keyword on class member variable?

A static variable does exit though the objects for the respective class are not created. Static member variable share a common memory across all the objects created for the respective class. A static member variable can be referred using the class name itself.

Q. Explain the static member function.

A static member function can be invoked using the class name as it exits before class objects comes into existence. It can access only static members of the class.

Q. Name the data type which can be used to store wide characters in C++.

wchar_t

Q. What are/is the operator/operators used to access the class members?

Dot (.) and Arrow ( -> )

Q. What is the data type to store the Boolean value?

bool, is the new primitive data type introduced in C++ language.