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 |
What is the difference between cin.read() and cin.getline()?
What are the advantages of using const reference arguments in a function?
What are shallow and deep copies?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
What are stacks?
Explain function overloading
What is a class template in c++?
Explain Memory Allocation in C/C++ ?
What is the full form nasa?
Explain the difference between 'operator new' and the 'new' operator?
What are the restrictions apply to constructors and destructors?
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.