What is unary operator? List out the different operators involved in the unary operator.
What is a unnitialised pointer?
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.
What is basic if statement syntax?
What are the popular tools used to detect memory leaks in c++
Why do we use pointers in c++?
What is the difference between global variables and static varables?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
What is c++ library?
Which is best c++ or java?
What is the best c++ book?
Describe private, protected and public?
What is the latest version on c++?