Bitwise operators
Logical operators
&&, ||  and, or
operate on entire value
int x = 0, y = 1;
(x && y) value 0
(x || y) value 1