Examlex

Solved

What Will Be the Values of Ans, X, and Y

question 53

Multiple Choice

What will be the values of ans, x, and y after the following statements are executed?
int ans = 35, x = 50, y = 50;
If (x >= y)
{
Ans = x + 10;
X -= y;
}
Else
{
Ans = y + 10;
Y += x;
}


Definitions:

Related Questions