What is a concrete class?



What is a concrete class?..

Answer / beena

A concrete class is used to define a useful object that can be instantiated as an automatic variable on the program stack. The implementation of a concrete class is defined. The concrete class is not intended to be a base class and no attempt to minimize dependency on other classes in the implementation or behavior of the class.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the difference between while and do while loop? Explain with examples.

0 Answers  


What is a unnitialised pointer?

0 Answers  


Explain bubble sorting.

0 Answers  


Difference between strdup and strcpy?

0 Answers  


Which programming language is best to learn first?

0 Answers  






Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast

2 Answers   Quark,


Who calls main function?

0 Answers  


. 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?

0 Answers  


What is the equivalent of Pascal's Real a) unsigned int b) float c) char

0 Answers  


Why do we use classes in programming?

0 Answers  


Explain abstraction.

0 Answers  


What is the difference between prefix and postfix versions of operator++()?

0 Answers  


Categories