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 |
Is map thread safe c++?
How can you quickly find the number of elements stored in a dynamic array?
C is to C++ as 1 is to a) What the heck b) 2 c) 10
What is capacity in vector in c++?
What is atoi in c++?
When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What is null pointer and void pointer and what is their use?
How can you create a virtual copy constructor?
Why do we use using namespace std in c++?
What are static variables?
Can we generate a C++ source code from the binary file?