The "virtual" specifier in a member function enables which
one of the following?
a) Monmorphism
b) Late binding
c) Metamorphism
d) Solomorphism
e) Inheritance
Answers were Sorted based on User's Feedback
Can we make any program in c++ without using any header file and what is the shortest program in c++.
What are the advantages of c++ over c?
Give example of a pure virtual function in c++?
Why do we use string in c++?
write a program in c++ to implement stack using functions in header file stack.h
What happens if an exception is throws from an object's constructor and from object's destructor?
What are pointers used for c++?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
an integer constant must have atleast one a) character b) digit c) decimal point
What are the advantages of early binding?
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
Profiler in projects?