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