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 |
Define linked lists with the help of an example.
What is size of empty class object
What is the difference between C and CPP?
What is long in c++?
Write about the members that a derived class can add?
Do we have to use initialization list in spite of the assignment in constructors?
What is c++ map?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
What is the role of static keyword for a class member variable?
What are advantages of C++ when comparing with C?
18 Answers HP, iGate, TCS,
What are the important differences between c++ and java?