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 |
Will c++ be replaced?
What is guard code in c++?
Write a program to concatenate two strings.
Is c++ still in demand?
What is the most common mistake on c++ and oo projects?
What is meant by entry controlled loop?
0 Answers Agilent, ZS Associates,
Explain the register storage classes in c++.
What is #include sstream?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
What is c++ stringstream?
Is c++ pass by reference or value?
What is #include cmath?