Bitwise operators
Logical operators
&&, ||  and, or
operate on entire value
int x = 0, y = 1;
(x && y) value 0
(x || y) value 1
May want to work with individual bits
int x = 2, y = 7;
(x && y) value 1
What about bits?