Which of the following can not be checked in a switch -case statement ?
A
Character
B
Integer
C
Float
D
None of the above
Correct Answer: Float
A switch statement allows a variable to be tested equality against a list of values. Each value is called a case. Character integer can be checked in switch - case statement.