Home
141.
What are the two forms of statements with the using keyword? What are the differences between those two forms?

The Using keyword can be used for the using directives and the using declarations.

The difference is using directive allows all names in a namespace to be used as if they are normal names.

A using declaration, on the other hand, enables the program to use an individual name from a namespace without qualifying it with the namespace qualifier.

142.
What are the basic concepts of object oriented programming?

It is necessary to understand some of the concepts used extensively in object oriented programming.These include

  1. Objects
  2. Classes
  3. Data abstraction and encapsulation
  4. Inheritance
  5. Polymorphism
  6. Dynamic Binding
  7. Message passing
143.
Tell me the major differences between normal and unnamed namespaces?

Names in a normal namespace can be used outside of the translation unit where the namespace is declared.

Names in an unnamed namespace can only be used within the translation unit where the namespace is declared.

144.
Can we use names defined in a namespace without using the using keyword?

Yes, we can use names defined in a namespace by prefixing them with the namespace qualifier

145.
What is the standard namespace?

The standard namespace stdis defined by the C++ Standard Library. It includes declarations of all names in the Standard Library.

146.
How many ways we have to initialize an int with a const ?

We have two formats for initializers in c++ .One is regular C notation and another one is contstructor notation. For Ex:

int abc = 123;
int abc(123);

147.
How can we link c++ programs to c functions ?

We can link c++ programs by using extern "C" linkage specification around the c function declarations.

148.
Define Pure virtual functions in c++.

Well its a member function that the base class forces the derived classes to provide. Normally these member functions have no implementation. Pure virtual functions are equated to zero.

class Shape { public: virtual void draw() = 0; };

149.
What is the advantage of an external iterator?

Main advantage of external iterator is it can be active many difference iterators simultaneously on the same subject.

150.
Tell me about friend function.

The function acts as a friend to a class. It can access its private and protected members as a friend of a class.
It must be listed in the class definition but its not a member of the class.