-
Register Relation
Why p++ is faster than p+1?
-
What is public, protected, private?
Public, protected and private are three access specifiers in C++. 1. Public data members and member functions are accessible outside the class.2. Protected data members and member functions are only available to derived classes.3. Private data members and member functions can’t be accessed outside the class. However there is an exception can be using friend classes.
-
-
-
-
C++ program to expand the given string
C++ program to expand the following string
aa2b4c3d
o/p should be :
aabbccccddd -
What is an object?
Object is a software bundle of variables and related methods. Objects have state and behavior.
-
-
-
-
-
-
-
-
What is out put of C++ code?
cclass base
{
public:
virtual void display(int i = 10)
{
cout -
-
Inheritance
Which one of the following statements regarding C++ class inheritance is FALSE?
a. Inheritance promotes generic design and code reuse.b. Struct cannot be inherited in C++.
c. C++ supports multiple inheritance. d. Inheritance is a mechanism through which a subclass inherits the properties and behavior of its superclass. -
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 polymorphism? Explain with an example?
"Poly" means "many" and "morph" means "form". Polymorphism is the ability of an object (or reference) to assume (be replaced by) or become many different forms of object. Example: function overloading, function overriding, virtual functions. Another example can be a plus ‘+’ sign, used for adding two integers or for using it to concatenate two strings.
C++ Interview Questions
Ans