What should end the block of code in each case statement to prevent the subsequent case statement from being executed as well?

What should end the block of code in each case statement to prevent the subsequent case statement from being executed as well?


a. default;
b. break;
c. exit;
d. end;


Answer: b. break;


Learn More :