What happens if there is no matching case in a switch statement?
The program enters an infinite loop
The program skips the switch statement and continues with the next statement
The program executes the code inside the default case (if provided)
The program throws an error and stops execution