//PROGRAM 4-12 class DemoSwitch5 { public static void main(String[] args) { boolean b = true; switch (b) { case true: System.out.println("Pilihan TRUE"); case false: System.out.println("Pilihan FALSE"); } } }