0 / 60 seg.

Analyze the use of parentheses for operator precedence in this code:

int a = 3, b = 5, c = 8;
boolean e2 = a < 2 && (b >= 5 || c == 8);