last exam we had the exercise to determine the output of the following code:
System.out.println(2 + 3 + \">=\" + 1 + 1);
My answer was <
It is evaluated from left to right. You concatenate"1" to "5 >=" and finally "1" to "5 >= 1".
"1"
"5 >="
"5 >= 1"