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

Is it possible to provide default values while overloading a binary operator?

0 Answers  


Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).

0 Answers  


What is c++ vb?

0 Answers  


What is a storage class?

0 Answers  


A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

0 Answers  






What is name mangling?

3 Answers  


What is function overloading c++?

0 Answers  


Can comments be longer than one line?

0 Answers  


What do the keywords volatile and mean mutable?

0 Answers  


What is Pure Virtual Function? Why and when it is used ?

10 Answers   Lucent, Sona,


What is the difference between C and CPP?

0 Answers   iNautix,


Do you need a main function in c++?

0 Answers  


Categories