When condition == "snow", what does switch condition do?
condition == "snow"
switch condition
It executes every case in order.
It executes the case "snow": branch.
case "snow":
It causes a compile-time error because strings cannot be switched on.
It skips the snow branch and executes default.
default