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...


Can we return two values from a function?

Answers were Sorted based on User's Feedback



Can we return two values from a function?..

Answer / dumb_dumb

Function always returns only one return value.
In other word, function cannot have a multiple return value.

The out or ref parameter can be used to trick the problem. However the return value still only one since Even the void function/method return 'null' value.

Is This Answer Correct ?    13 Yes 0 No

Can we return two values from a function?..

Answer / abhinav kashyap

Using return statment, it is not possible to return more
than one value but if we use the Out parameters then we can
have return more than one value depanding upon how many
parameters u have given as Out Parameter.

Is This Answer Correct ?    6 Yes 1 No

Can we return two values from a function?..

Answer / srinivas.r

Function should have only one return statement,whereas
using out parameter its possible to send more than on value.

Is This Answer Correct ?    4 Yes 0 No

Can we return two values from a function?..

Answer / vinay tiwari

with the help of out paraeter we can return two value from
function

Is This Answer Correct ?    4 Yes 1 No

Can we return two values from a function?..

Answer / tarun kumar

yes.
for example:
public int Add(int a,int b,out int c)
{
c=a+1;
return a+b;
}
when we call the Add method we will get the sum of the a
and b and can also use the value of c
like
int d=0;
int e= Add(2,3,d) ;
then the value of e will be 5 and the value of d will be 3.

Is This Answer Correct ?    9 Yes 8 No

Can we return two values from a function?..

Answer / ish rastogi

in c# a function can return two values with the help of out
parameter.

Is This Answer Correct ?    3 Yes 2 No

Can we return two values from a function?..

Answer / vijay

yes we can return two values with the help of out keyword

Is This Answer Correct ?    4 Yes 4 No

Can we return two values from a function?..

Answer / niks

I think yes.. Function can return multiple values.. It's
not good practice.. but C# allows you.. Consider following
example

int Val;
GetValue(Val);

bool GetValue(out int Val)
{
Val = value;
return true;
}

Is This Answer Correct ?    4 Yes 5 No

Can we return two values from a function?..

Answer / ramu annamalai

Guys, you will be able to return n number of values, while
you are using arraylist.

Is This Answer Correct ?    6 Yes 9 No

Can we return two values from a function?..

Answer / vijay saxena

No
only one value will return at a time but function may have
multiple output statement ..

Is This Answer Correct ?    1 Yes 7 No

Post New Answer

More C Sharp Interview Questions

who is a protected class-level variable available to?

0 Answers   Siebel Systems,


FOR EXAMPLE : CLASS Dotnet { } creating object: Dotnet dn=new Dotnet(); NOW THE QUESTION IS WHICH IS CALLED AS OBJECT ?EITHER dn OR new Dotnet() and CAN YOU PROVE YOUR ANSWER?????PLEASE REPLY...

1 Answers  


What is difference between dictionary and hashtable?

0 Answers  


What is data set in c#?

0 Answers  


What does assert() do?

1 Answers   Rolta,


What are predicates in c#?

0 Answers  


What does get set mean in c#?

0 Answers  


Why is it a bad idea to throw your own exceptions?

1 Answers   Visual Soft,


What are the two keywords used to pass a variable by reference in c#?

2 Answers   IBM,


What are the access-specifiers available in c#?

26 Answers   Syntel,


How to assign default value to nullable types? Did nested nullable types are allowed

2 Answers   TCS,


How to find whether the application is run from inside ide or not?

0 Answers  


Categories