Question: Multiple Selectors switch (index) { case 1: case 3: odd += 1; sumodd += index; break; After case 1 is executed, it automatically gets out
Multiple Selectors
switch (index)
{ case 1:
case 3: odd += 1;
sumodd += index;
break;
After case 1 is executed, it automatically gets out of the switch without visiting case 3 (True or False?)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
