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

whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };

5 Answers   Huawei,


What is difference between class and function?

0 Answers  


Are php strings immutable?

0 Answers  


When can I use a forward declaration?

0 Answers  


What are c++ files?

0 Answers  






What is std namespace in c++?

0 Answers  


What is pure virtual function?

0 Answers  


write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;

0 Answers  


What is the difference between set and map in c++?

0 Answers  


Can the creation of operator** is allowed to perform the to-the-power-of operations?

0 Answers  


How to create a pure virtual function?

1 Answers  


write a program in c++ to implement stack using functions in header file stack.h

3 Answers   Google, Subex,


Categories