What is a v-table?
Difference between an inspector and a mutator
What is the use of map in c++?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
Can c++ be faster than c?
Where must the declaration of a friend function appear?
Explain the isa and hasa class relationships.
What do you mean by pure virtual functions in C++? Give an example?
what is Loop function? What are different types of Loops?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
Explain the scope resolution operator?
Describe private, protected and public – the differences and give examples.
Is recursion allowed in inline functions?