Examlex

Solved

What Would Be the Value of X After the Following

question 32

Multiple Choice

What would be the value of x after the following statements were executed? int x = 10;
Switch (x)
{
Case 10:
X += 15;
Case 12:
X -= 5;
Break;
Default:
X *= 3;
}


Definitions:

Related Questions