Multiple choice technology programming languages What argument types are legal for switch statements? (Choose all that apply) char byte short int boolean Reveal answer Fill a bubble to check yourself A,B,C,D Correct answer Explanation Java switch statements accept integral types that can fit in an int: char, byte, short, and int (and their wrapper classes Character, Byte, Short, Integer). Long and float types are not permitted, and boolean is explicitly excluded.