What is a node class?



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

Post New Answer

More C++ General Interview Questions

What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required

0 Answers  


List out some of the OODBMS available?

1 Answers  


What is rtti in c++?

0 Answers  


Can I create my own functions in c++?

0 Answers  


What is data abstraction? How is it different from data encapsulation?

0 Answers  


Specify some guidelines that should be followed while overloading operators?

0 Answers  


What is iterator in c++?

0 Answers  


What are the benefits of oop in c++?

0 Answers  


What's c++ used for?

0 Answers  


Which sort does c++ use?

0 Answers  


How size of a class can be calulated?

2 Answers  


What is a memory leak c++?

0 Answers  


Categories