Multiple choice Which of the following statements is FALSE regarding switch case statement? We can have any number of case statements within a switch. When a break statement is reached, the switch terminates. Using default in switch case is optional. The value to be compared can be of any type. Every case need not have a break statement. Reveal answer Fill a bubble to check yourself D Correct answer Explanation The value to be compared should be of integral type. We cannot compare a floating point value using a switch-case.