Difference between Overloading and Overriding?
Answer Posted / ramesh pedhamalla
Overloading is compile time binding, where as overriding is
dynamic binding.....
| Is This Answer Correct ? | 112 Yes | 25 No |
Post New Answer View All Answers
Explain linked list using c++ with an example?
What is virtual function? Explain with an example
Can a Structure contain a Pointer to itself?
When should we use multiple inheritance?
Can constructor be private in c++?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
When should I use unitbuf flag?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
What is the most common mistake on c++ and oo projects?
How do you invoke a base member function from a derived class in which you’ve overridden that function?
Do you know what are the new features that iso/ansi c++ has added to original c++ specifications?
Differentiate between an external iterator and an internal iterator?
Is oops and c++ same?
What is a .lib file in c++?
What are the uses of pointers?