What is a node class?
Answer / beena
A node class is a class that,
relies on the base class for services and implementation,
provides a wider interface to te users than its base class,
relies primarily on virtual functions in its public interface
depends on all its direct and indirect base class
can be understood only in the context of the base class
can be used as base for further derivation
can be used to create objects.
A node class is a class that has added new services or functionality beyond the services inherited from its base class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
Can we declare a base-class destructor as virtual?
What can I safely assume about the initial values of variables which are not explicitly initialized?
What does I ++ mean in c++?
Why is polymorphism useful?
What are advantages of using friend classes?
What is #include math h in c++?
Explain what happens when a pointer is deleted twice?
Difference between const char* p and char const* p?
Explain the scope resolution operator?
What is expression parser in c++
What does return 0 do in c++?