Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between "overloading" and "overridding"?

Answers were Sorted based on User's Feedback



What is the difference between "overloading" and "overridding"?..

Answer / shivanannd

overloading means that we can use same method with same
name many times for multiple purpose in a class with
difference parameters.

overriding means we can refer a method of a base class with
same name in a derived class with same paameters.

Is This Answer Correct ?    8 Yes 0 No

What is the difference between "overloading" and "overridding"?..

Answer / shakti singh khinchi

Overloading: When more then 1 methods in a class having same
name but they are different in their number of parameters,
different in their parameters types and their order.

Overriding: When a parent class is derived by a child class
and some method which has present in parent class which is
declared as "virtual" in parent class , same method with
same name and parameters and sam type is also declared in
child class without "virtual" keyword, bcz it is by default
virtual in child. SO PARENT AND CHILD CLASS USES SAME METHOD
ARE CALLED OVERRIDING.

Is This Answer Correct ?    4 Yes 0 No

What is the difference between "overloading" and "overridding"?..

Answer / vighnesh

Overloading uses same funtion with different parameters

Overriding Uses same exactly similar funtion prototypes
this used in runtime polimorphism ie Virtual Funtions

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is size of string in c++?

0 Answers  


What are the steps in the development cycle?

0 Answers  


What is atoi?

0 Answers  


What is a binary file? List the merits and demerits of the binary file usagein C++.

0 Answers  


Explain how a pointer to function can be declared in C++?

0 Answers  


Why is standard template library used?

0 Answers  


write a program to insert an element into an array

26 Answers   TCS,


Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

0 Answers   CTS,


Explain the volatile and mutable keywords.

0 Answers  


How can you quickly find the number of elements stored in a static array?

0 Answers  


class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.

5 Answers   Quark,


What do you mean by abstraction. Explain your answer?

5 Answers  


Categories