Multiple choice

Each case in switch statement should end with ___________ statement.

  1. goto

  2. continue

  3. exit

  4. break

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Each case in switch statement should end with break statement. It transfers the control to the next statement or case.