✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will the following code output?
int x = 4;
switch (x) {
case 1:
System.out.println("One");
break;
case 4:
System.out.println("Four");
break;
default:
System.out.println("Default");
}