Checks for equality between the input expression and case labels → ✅ True
Supports floating point constants → ❌ Not allowed
In Java, switch can only work with:
byte, short, char, int
Their wrapper classes (Byte, Short, Character, Integer)
String
enum types
float and double are not allowed.
break is used to exit the switch block → ✅ True
Case labels are unique → ✅ True
✅ Answer: (b) supports floating point constants