Discussion :: Control Instructions
-
We want to test whether a value lies in the range 2 to 4 or 5 to 7. Can we do this using a switch?
Answer : Option A
Explanation :
We can do this in following switch statement
switch(a) { case 2: case 3: case 4: /* some statements */ break; case 5: case 6: case 7: /* some statements */ break; }
Be The First To Comment