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