Describe functional overloading?

Answers were Sorted based on User's Feedback



Describe functional overloading?..

Answer / ningu

functional overloading means in a program we can have one or
more functions with the same name but they must differ in

:No of parameters passed
:order of the parameter passed
:the type of the parameter

Oop languages like C++ and Java posses this tecnique

Is This Answer Correct ?    8 Yes 1 No

Describe functional overloading?..

Answer / abhishek sinha

functiion overloading means in a program we can define more
than function with the same name but different argument.

Is This Answer Correct ?    2 Yes 1 No

Describe functional overloading?..

Answer / rasool

Ningu, its not necessary that the functions 'must' differ
in the :No of parameters passed
:order of the parameter passed
:the type of the parameter.

say, I have a function Add(int a , int b)
I still can have a function Add(int*a,int*b).

Function overloading is type of polymorphism in C++.i.e
multiple forms of the same function(methods).Function
overloading comes under compile time polymorphism.

Is This Answer Correct ?    2 Yes 1 No

Describe functional overloading?..

Answer / harini

function overloading means ,the same functions which is used for different purpose with different parameter..

Is This Answer Correct ?    1 Yes 0 No

Describe functional overloading?..

Answer / naidu

method name is same and signature is different, signature
means, .type of parameters or
.order of parameters or
.number of param

Is This Answer Correct ?    1 Yes 0 No

Describe functional overloading?..

Answer / vignesh

c consists of both object oriented and function oriented
but whereas java consists of only object oriented language

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More C++ General Interview Questions

What do you mean by internal linking and external linking in c++?

1 Answers  


how to swap two numbers with out using temp variable

12 Answers   Global eProcure, TCS,


Explain the purpose of the keyword volatile.

0 Answers  


WHO DEVELOPED C++?

6 Answers  


What is namespace std; and what is consists of?

0 Answers  






What is array in c++ pdf?

0 Answers  


Can non-public members of another instance of the class be retrieved by the method of the same class?

0 Answers  


Explain the difference between abstract class and interface in c++?

0 Answers  


When should I use unitbuf flag?

0 Answers  


Describe the advantage of an external iterator.

0 Answers  


How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever

17 Answers   Datavance, Quark, VEL, Wipro,


What is a dangling pointer?

3 Answers   Glenwood,


Categories