Evaluate the following code for operator precedence:
boolean result = 3 > 2 || 5 < 4 && 6 > 5;
OR has higher precedence than AND
result is true
result is false
AND has higher precedence than OR