Question: 5 points What will print? int True = 1; int False = 0; if (True) System.out.println(It's true!); else if (False) System.out.println(It's false!); It's false! won't
5 points What will print? int True = 1; int False = 0; if (True) System.out.println("It's true!"); else if (False) System.out.println("It's false!"); It's false! won't compile because you cannot use a boolean variable in an if condition won't compile because you cannot convert an int to a boolean It's true! O
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
