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 |
Describe about storage allocation and scope of global, extern, static, local and register variables?
What is a local reference?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is flush c++?
What does int * mean in c++?
What is implicit pointer in c++?
What is using namespace std in c++?
Explain the different access specifiers for the class member in c++.
What is the full form of ios?
Explain how functions are classified in C++ ?
What is buffering in c++?
Which is the best c++ software?