Question: Given the following switch statement where x is an int, answer the next two questions: switch (x) { case 3 : x += 1; case
Given the following switch statement where x is an int, answer the next two questions: switch (x) { case 3 : x += 1; case 4 : x += 2; break; case 5 : x += 3; case 6 : x += 1; case 7 : x += 2; case 8 : x = x - 1; case 9 : x += 1; }
If x is currently equal to 5, what will the value of x be after the switch statement executes?
| 8 | ||
| 9 | ||
| 10 | ||
| 11 |
If x is currently equal to 3, what will the value of x be after the switch statement executes?
| 12 | ||
| 6 | ||
| 7 | ||
| 4 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
