Saturday 24 October 2015

C++ Interview Questions and Answers For Freshers

C++ Interview Questions and Answers For Freshers


1. Explain about abstraction

* Simplified view of an object in user’s language is called abstraction.

*It is the simplest, well-defined interface to an object in OO and C++ that provides all the expected          features and services to the user in a safe and predictable manner.

*It provides all the information that the user requires.

*Good domain knowledge is important for effective abstraction.

*It separates specifications from implementation & keeps the code simpler and more stable.


2. a.) What is the real use of a class – to export data?

No, the real purpose of a class is not to export data. Rather, it is to provide services. Class provides a way to abstract behaviour rather than just encapsulating the bits.


b.) What are the things need to remember while making a interface?



* A class’s interface should be sensible enough. It should behave the way user expects it to.
* It should be designed from the outside in.

4. Explain the use inheritance.

The use of  inheritance are :
         a.) substitutability
          b.) extensibility.
Substitutability: The objects of a properly derived class can be easily and safely substituted for an                                  object of its base class.
Extensibility: The properly derived class can be freely and safely used in place of its base class even if the properly derived class is created a lot later than defining the user code. Extending the functionalities of a system is much easier when you add a properly derived class containing enhanced functionalities.

4. Does improper inheritance have a potential to week a project?

Many projects meet a dead end because of bad inheritance. So, it certainly has the potential to week a project.
Small projects still have a scope to avoid the complete consequence of bad inheritance if the developers communicate and co-ordinate with an easy system design. This kind of a luxury is not possible in big projects, which means that the code breaks in a way difficult and at times impossible way to fix it.

5. How should RT(run time) errors be handled in C++?

* The runtime errors in C++ can be handled using exceptions.
* This exception handling mechanism in C++ is developed to handle the errors in software made up       of independently developed components operating in one process and under synchronous control.
* According to C++, any routine that does not fulfil its promise throws an exception. The caller who      knows the way to handle these exceptions can catch it.

6. When should a function throw an exception?

*A function should throw an exception when it is not able to fulfil its promise.As soon as the function    detects a problem that prevents it from fulfilling its promise, it should throw an exception. If the         function is able to handle the problem, recover itself and deliver the promise, the exception should     not be thrown.
* If an event happens very frequently then exception handling is not the best way to deal with it. It requires proper fixation.

7. Where setjmp and longjmp functions are used in C++?

* Setjmp and longjmp should not be used in C++.
* Longjmp jumps out of the function without unwinding the stack. This means that the local objects     generated are not destructed properly.
* The better option is to use try/catch/throw instead. They properly destruct the local objects.

8. Are there ant special rules about inlining?

* Yes, there are a few rules about inlining
1. Any source files that used the inline function must contain the function’s definition.
2. An inline function must be defined everywhere. The easier way to deal with this to define the function once in the classheader file and include the definition as required. The harder way is to redefine the function everywhere and learn the one-definition rule.
3.main() can not be inline.

9. Explain ORD(one-definition rule).

According to one-definition rule, C++ constructs must be identically defined in every compilation unit they are used in.
As per ODR, two definitions contained in different source files are called to be identically defined if they token-for-token identical. The tokens should have same meaning in both source files.
Identically defined doesn’t mean character-by-character equivalence. Two definitions can have different whitespace or comments and yet be identical.

10. What are the advantages of using friend classes?

Friend classes are useful when a class wants to hide features from users which are needed only by another, tightly coupled class.Implementation details can be kept safe by providing friend status to a tightly cohesive class.

C++ Interview Questions and Answers For Freshers

11. What is the use of default constructor?

It is a constructor that does not accept any parameters.
If there is no user-defined constructor for a class, the compiler declares a default parameterless constructor called default constructor. It is an inline public member of its class.
When the compiler uses this constructor to create an object – the constructor will have no constructor initializer and a null body.

12. Differentiate between class and structure.

* The members of structures are public while those of a class are private.
* Classes provide data hiding while structures don’t.
* Class bind both data as well as member functions while structures contain only data.

13. Explain container class.

* Class to hold objects in memory or external storage. It acts as a generic holder.
* It has a predefined behaviour and a known interface.
* It is used to hide the topology used for maintaining the list of objects in memory.

The container class can be of two types:

Heterogeneous container: Here the container class contains a group of mixed objects
Homogeneous container: Here the container contains all the same objects.

14. a.) Explain about name space?

* namespaces are used to group entities like classes, objects and functions under a name.

b.) Explain explicit container.

* These are constructors that cannot take part in an implicit conversion.
* These are conversion constructors declared with explicit keyword.
* Explicit container is reserved explicitly for construction. It is not used by the compiler to implement an implied conversion of types.

15. Explain class invariant in C++.
* It is a condition that ensures correct working of a class and defines all the valid states for an object.
* When an object is created class invariants must hold.
* It is necessary for them to be preserved under all operations of the class.
* All class invariants are both preconditions as well as post-conditions for all operations or member     functions of the class.

16. Differentiate between late binding and early binding. What are the advantages of early binding?

* a.) Late binding refers to function calls that are not resolved until run time while early binding           refers to the events that occur at compile time.
* b.) Late binding occurs through virtual functions while early binding takes place when all the information needed to call a function is known at the time of compiling.
* Early binding increases the efficiency. Some of the examples of early binding are normal function calls, overloaded function calls, and overloaded operators etc.

17. Explain public, protected, private in C++?

These are three access specifiers in C++.

       Public: Here the data members and functions are accessible outside the class.
        Protected: Data members and functions are available to derived classes only.
          Private: Data members and functions are not accessible outside the class.

2 comments: