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 |
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; };
What is difference between class and function?
Are php strings immutable?
When can I use a forward declaration?
What are c++ files?
What is std namespace in c++?
What is pure virtual function?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What is the difference between set and map in c++?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
How to create a pure virtual function?
write a program in c++ to implement stack using functions in header file stack.h