Let x be any integer > 0. I have seen many programmers do this:
(x & 1) != 0
Instead of this:
(x & 1) == 1 <
(x & 1) == 1