What is the result of:
boolean result = true || (++a > 5); where int a = 5;?
true, and a becomes 6
true, but a remains 5
false, and a becomes 6
false, and a becomes 5