Answer Posted / 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 |
Post New Answer View All Answers
What is data binding in c++?
Define the operators that can be used with a pointer.
What are structs in c++?
What is the difference between function overloading and operator overloading?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
Are strings mutable in c++?
Why is c++ a mid-level programming language?
What is the best c++ book for beginners?
What is the purpose of extern storage specifier?
What is boyce codd normal form in c++?
Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
Write about a nested class and mention its use?
What are advantages of c++?
Differentiate between an external iterator and an internal iterator?
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.