Solved

Given the Following Function:
Void Calc (Int A, Int& B) \quad

Question 25

Multiple Choice

Given the following function:
void calc (int a, int& b)
{
\quad Int c;
\quad c = a + 2;
\quad a = a * 3;
\quad b = c + a;
}
What is the output of the following code segment that invokes calc() :
Int x = 1;
Int y = 2;
Int z = 3;
Calc(x, y) ;
Cout << x << " " << y << " " << z << endl;


A) 1 2 3
B) 1 6 3
C) 3 6 3
D) 1 14 9
E) 2 3 4 5

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions