Accenture Java Programming Practice Question
Fill in the appropriate data type for the Java switch statement: switch (____) { case value1: ... case value2: ... default: System.out.println("Hello"); }Answer options
A
byte
B
float
C
boolean
D
double
Correct answer: byte
Explanation
Java switch supports byte, short, char, int, their wrapper classes, enums, and String. Among the options, byte is valid.