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 while and do while loop? Explain with examples.
What is a unnitialised pointer?
Explain bubble sorting.
Difference between strdup and strcpy?
Which programming language is best to learn first?
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
Who calls main function?
. 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?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
Why do we use classes in programming?
Explain abstraction.
What is the difference between prefix and postfix versions of operator++()?