Difference between Overloading and Overriding?

Answers were Sorted based on User's Feedback



Difference between Overloading and Overriding?..

Answer / swetcha

Overloading - Two functions having same name and return
type, but with different type and/or number of arguments.
Overriding - When a function of base class is re-defined in
the derived class.

Is This Answer Correct ?    850 Yes 105 No

Difference between Overloading and Overriding?..

Answer / janet

1. In overloading,there is a relation ship between methods
available in the same class where as in overridding,there
is relationship between a super class method and subclass
method.
2. overloading doesn't block inheritence from the
superclass where as overridding blocks inheritence.

3. in overloading,seperate methods share the same name
where as in overridding,subclass methods replaces the
superclass.

4.overloading must have different method signatures where
as overriding must have same signature.

Is This Answer Correct ?    482 Yes 79 No

Difference between Overloading and Overriding?..

Answer / shivanand

The main difference between overloading and overriding is
that in overloading we can use same function name with
different parameters for multiple times for different tasks
with on a class.
and overriding means we can use same name fiunction name
with same parameters of the base class in the derived class.
this is also called as reusability of code in the programme.

Is This Answer Correct ?    312 Yes 67 No

Difference between Overloading and Overriding?..

Answer / natarajan

Overloading is compile time binding, where as overriding is
dynamic binding.

Is This Answer Correct ?    149 Yes 40 No

Difference between Overloading and Overriding?..

Answer / ramesh pedhamalla

Overloading is compile time binding, where as overriding is
dynamic binding.....

Is This Answer Correct ?    112 Yes 25 No

Difference between Overloading and Overriding?..

Answer / gaurav rawat

* in overloading function name are same but signatures
(argument) are different .
while in overriding function name are as well as argument
are same in drive class as in super class.
* for overloading can be done in one class but
for overriding there is necessary that at least two class
should be present.

Is This Answer Correct ?    101 Yes 24 No

Difference between Overloading and Overriding?..

Answer / meenu kathuria

overloading: same name but different signatures in same class
overriding: same name and same signature defined in
different class.

Is This Answer Correct ?    103 Yes 34 No

Difference between Overloading and Overriding?..

Answer / adeel shahid

overriding is done in the base class where the parent class
method is overridden by a method of the same signature.

Overloading is done in the same class on functions with
input parameters differing in number or type.

Is This Answer Correct ?    98 Yes 36 No

Difference between Overloading and Overriding?..

Answer / n.balasutha

It does not block superclass method it will override the
super class method

Is This Answer Correct ?    93 Yes 63 No

Difference between Overloading and Overriding?..

Answer / mansi shah

Overloading is evaluaated at compile time whereas
Overriding is evaluated at Run Time.

Overloading method has different Parameters but same name
whereas Overriding is just the implementation of method
define din Base Class.

Overloading does not interfere Base Class whereas
Overriding method must require the method which is declared
in Base Class.

Overloading can be defined in one class,in short term it
does not require separate Base Class to implement the
method,whereas for implementing method overriding the Base
class is necessary..

Is This Answer Correct ?    21 Yes 10 No

Post New Answer

More C++ General Interview Questions

Where can I run c++ program?

0 Answers  


What is the purpose of the "delete" operator?

0 Answers  


What is c++ flowchart?

0 Answers  


write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement

2 Answers  


What is a modifier in c++?

0 Answers  






Write a program which uses functions like strcmp(), strcpy()? etc

0 Answers  


Does there exist any other function which can be used to convert an integer or a float to a string?

0 Answers  


What is a local reference?

0 Answers  


Explain the use of this pointer?

0 Answers  


Explain selection sorting. Also write an example.

0 Answers  


What is namespace std; and what is consists of?

0 Answers  


What is polymorphism in c++? Explain with an example?

0 Answers  


Categories