int x = 5; int y = 2; char op = ''; switch (op) { default : x += 1; case '+' : x += y; /*It will go to all the cases/ case '-' : x -= y; } After the sample code above is executed, what will be the value of variable x?
Reveal answer
Fill a bubble to check yourself