In a switch statement, the break keyword is placed to stop the execution of the rest of the code. So after a specific case is selected, it runs the code from top to bottom. Otherwise the code from the next case(s) will execute.
Since default is when none of cases are selected, there is no need to include the break keyword.