Examlex

Solved

What Will Be the Value of X After the Following

question 55

Multiple Choice

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


Definitions:

Related Questions