What is the output for the below code ? public class Test { public static void main(String[] args) { Boolean expr = true; if (expr) { System.out.println("true"); } else { System.out.println("false"); } } }
Reveal answer
Fill a bubble to check yourself