Engineering Full Stack Apps with Java and JavaScript
Consider the following method...
public static void ifTest(boolean flag){ if (flag) //1 if (flag) //2 if (flag) //3 System.out.println("False True"); else //4 System.out.println("True False"); else //5 System.out.println("True True"); else //6 System.out.println("False False"); }
Which of the following statements are correct?
Select 2 options
A. If run with an argument of 'false', it will print 'False False'
B. If run with an argument of 'false', it will print 'True True'
C. If run with an argument of 'true', it will print 'True False'
D. It will never print 'True True'
E. It will not compile.