Which of these statements display true in the console?

System.out.print(true || false);System.out.print(10 < 9000);System.out.print(true && false);System.out.print("false");

Perfect! (true || false) is true because one of the statements is true and 10 obviously isn't over 9000.

Whoops! (true || false) is true because one of the statements is true and 10 obviously isn't over 9000.