What is using namespace std in cpp?
What is implicit conversion/coercion in c++?
Differentiate between a deep copy and a shallow copy?
What is the difference between static link library and dynamic link library?
Is C++ case sensitive a) False b) Depends on implementation c) True
What is private public protected in c++?
write a porgram in c++ that reads an integer and print the biggest digit in the number
Is c++ primer good for beginners?
Difference between shift left and shift right?
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.
How do you establish a has-a relationship?
What is c++ manipulator?
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?