As I was reading a colleague\'s Java code, I stumbled upon an army of if/else statements. In these statements, several && and || operators wer
&&
||
The && has higher operation precedence over the ||, thus it wins.