When we use Abstract Class and when we use Interface?where we
will implement in real time?


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

Post New Answer

More C++ General Interview Questions

Is nan a c++?

0 Answers  


Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);

0 Answers  


What are the advantages of pointers?

0 Answers  


Why do we use using namespace std in c++?

0 Answers  


How does the copy constructor differ from the assignment operator (=)?

0 Answers  






What are c++ redistributables?

0 Answers  


Can you use the function fprintf() to display the output on the screen?

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,


What is buffering in c++?

0 Answers  


How would you differentiate between a pre and post increment operators while overloading?

0 Answers  


How size of a class can be calulated?

2 Answers  


Write about the scope resolution operator?

0 Answers  


Categories