Pages

40 [Latest] Advanced C++ Job Interview Questions with Answers


Real Time Advanced C++ Interview Questions and Answers PDF


•    How To Initialize Constant And Reference Member Variable?
Using initialization list.

•    What Is Constant In A Const Function?
Variable 'this'.

Latest Advanced C++ Job Interview Questions

•    What Is The Issue In The Following Program?
 #include <iostream>
          int main(int argc, char **argv)
     {
         const int & r1 = 100;
         int v = 200;
         int &r2 = v;
         int & r3 = 200;
         return 0;
    }
 Issue is in the initialization of r3 at line 8, rvalue should be a variable.

•    Can The Destructor Be Pure Virtual Function?
Yes, but you still have to define it!

•    What Is The Memory Structure Of An Object?
Usually C++ objects are made by concatenating member variables.
For example;
     class Test
     {
      int i;
      float j;
     };
is represented by an int  followed by a float.
     class TestSub: public Test
     {
      int k;
     };
The above class is represented by Test and then an int(for int k). So finally it will be int,  float and int.
In addition to this each object will have the vptr(virtual pointer) if the class has virtual function, usually as the first element in a class.

•    What Is The Difference Between Std::vector<int> X; And Std::vector<int> X();?
First one declares a variable x of type std::vector<int>. Second one declares a function x which returns std::vector<int>.

•    What Is A Default Constructor?
1.     A constructor which takes no argument
2.     A constructor which has argument(s) but is(are) with default value

•    Can I Use This Pointer In The Constructor?
Yes, but try to avoid calling virtual function from the constructor and passing this pointer from the initialization list to other classes.

•    Does Friends Are Inherited?
No

•    What Is The Difference Between Calling Just Throw And Throw With An Object In A Catch Block?
A copy of the object is created if we throw with an object. With just throw, no copy is created.

•    What Is A Possible Replacement For C Static Function In C++?
Unnamed namespaces.

•    What Is The Size Of An Empty Class, Or Class With Only Normal Functions?
Not zero, 1 for most compilers. The reason for this is to have different address for different object.

•    What Is The Size Of Class With Only Virtual Functions?
4 with most of the compilers for a 32bit binary.

•    How To Declare A Namespace Alias?
 namespace MyLongNameSpaceName
{
...
}
namespace MLNSN = MyLongNameSpaceName;

•    How To Declare C Function In C++?
By using extern "C".
extern "C" void print();
or
extern "C" {
    void print();
}

•    What Is The Difference Between Exit And Abort?
exit does a graceful process termination, it calls the destructors for all the constructed objects, with abort they are not called.
With exit the local With variables of the calling function and its callers will not have their destructors invoked.

•    Can I Have Static Members In An Union?
No

•    Can I Overload Destructor?
No

•    Can I Call Destructor Explicitly?
Yes, but you only want to do that when you have used placement new.

•    Where Virtual Inheritance Should Be Used In A Hierarchy?
If we have a diamond class hierarchy we should use the virtual inheritance just below the top of the diamond.

•    How Do You Link A C++ Program To C Functions?
By using the extern "C" linkage specification around the C function declarations.

•    Explain The Scope Resolution Operator?
It permits a program to reference an identifier in the global scope that has been hidden by another identifier with the same name in the local scope.

•    What Are The Differences Between A C++ Struct And C++ Class?
The default member and base-class access specifiers are different.
•    How Does Throwing And Catching Exceptions Differ From Using Setjmp And Longjmp?
The throw operation calls the destructors for automatic objects instantiated since entry to the try block.

•    What Is Your Reaction To This Line Of Code?
It’s not a good practice.

•    What Is A Conversion Constructor?
A constructor that accepts one argument of a different type.

•    What Is The Difference Between A Copy Constructor And An Overloaded Assignment Operator?
A copy constructor constructs a new object by using the content of the argument object. An overloaded assignment operator assigns the contents of an existing object to another existing object of the same class.

•    When Should You Use Multiple Inheritance?
There are three acceptable answers: "Never," "Rarely," and "When the problem domain cannot be accurately modeled any other way."

•    What Is A Virtual Destructor?
The simple answer is that a virtual destructor is one that is declared with the virtual attribute.

•    Explain The Isa And Hasa Class Relationships. How Would You Implement Each In A Class Design?
A specialized class "is" a specialization of another class and, therefore, has the ISA relationship with the other class. An Employee ISA Person. This relationship is best implemented with inheritance. Employee is derived from Person. A class may have an instance of another class. For example, an employee "has" a salary, therefore the Employee class has the HASA relationship with the Salary class. This relationship is best implemented by embedding an object of the Salary class in the Employee class.

•    When Is A Template A Better Solution Than A Base Class?
When you are designing a generic class to contain or otherwise manage objects of other types, when the format and behavior of those other types are unimportant to their containment or management, and particularly when those other types are unknown (thus, the genericity) to the designer of the container or manager class.

•    What Is A Mutable Member?
One that can be modified by the class even when the object of the class or the member function doing the modification is const.

•    What Is An Explicit Constructor?
A conversion constructor declared with the explicit keyword. The compiler does not use an explicit constructor to implement an implied conversion of types. It’s purpose is reserved explicitly for construction.

•    What Is The Standard Template Library?
A library of container templates approved by the ANSI committee for inclusion in the standard C++ specification.
A programmer who then launches into a discussion of the generic programming model, iterators, allocators, algorithms, and such, has a higher than average understanding of the new technology that STL brings to C++ programming.

•    Describe Run-time Type Identification.?
The ability to determine at run time the type of an object by using the typeid operator or the dynamic_cast operator.

•    What Problem Does The Namespace Feature Solve?
Multiple providers of libraries might use common global identifiers causing a name collision when an application tries to link with two or more such libraries. The namespace feature surrounds a library’s external declarations with a unique namespace that eliminates the potential for those collisions. This solution assumes that two library vendors don’t use the same namespace identifier, of course.

•    Are There Any New Intrinsic (built-in) Data Types?
Yes. The ANSI committee added the bool intrinsic type and its true and false value keywords.


Latest Advanced C++ Interview Questions for freshers and Experienced pdf

No comments:

Post a Comment