What is a v-table?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Difference between an inspector and a mutator

0 Answers  


What is the use of map in c++?

0 Answers  


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.

2 Answers   Quark,


Can c++ be faster than c?

0 Answers  


Where must the declaration of a friend function appear?

0 Answers  


Explain the isa and hasa class relationships.

0 Answers  


What do you mean by pure virtual functions in C++? Give an example?

1 Answers  


what is Loop function? What are different types of Loops?

0 Answers  


Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.

0 Answers  


Explain the scope resolution operator?

2 Answers  


Describe private, protected and public – the differences and give examples.

0 Answers  


Is recursion allowed in inline functions?

0 Answers  


Categories