Step 1: In programming, the switch statement is used to execute one case among many based on a given value.
Step 2: Each case in a switch statement ends with a break statement.
Step 3: The break statement stops execution and prevents the control from moving to the next case.