Briefly describe how parameter passing by value and by reference are accomplishe
ID: 3639315 • Letter: B
Question
Briefly describe how parameter passing by value and by reference are accomplished in memory. Write statement 1 to call Method A below. Write statement 2 to call Method B. Which method uses pass by value? Which method uses pass by reference?static void
Main()
{
double max = 2000;
double difference = 0;
//statement 1
//statement 2
}
//method A
public static double calcDifference (double
max)
{
return (6000.00 - max);
}
//method B
public static void calcDifference(double
max, ref double
difference)
{
difference = 6000 - max;
Explanation / Answer
//method A
public static double calcDifference (double // this is pass by value
max)
{
return (6000.00 - max);
}
//method B
public static void calcDifference(double
max, ref double
difference) // this is pas by reference.
{
difference = 6000 - max;
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.