What is a base class?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the ISA and HASA class relationships. How would you implement each in a class design?
Explain how the virtual base class is different from the conventional base classes of the opps.
C is to C++ as 1 is to a) What the heck b) 2 c) 10
What is the difference between global int and static int declaration?
What is a map in c++?
What are the advantages of prototyping?
What is the purpose of ios::basefield in the following statement?
What is c++ course?
What you know about structures in C++?
0 Answers Agilent, ZS Associates,
Explain the concept of copy constructor?
What is lambda expression 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.