1
visibility

Predict the output ?
int a = 18; int b = 12;
boolean t = (a > 20 && b < 15)? true : false;

  • true

  • false

  • 18

  • Syntax Error

The condition a > 20 is false as value of a is 18. So the logical AND operator — && returns false. Variable t is assigned the value of expression 2 which is false.