A binary AND is performed pair-wise, or bit-wise, meaning you line the two numbers up and apply AND to each pair of bits using the following truth table. For simplicity though, the result of an AND will be 1 only if both inputs are 1.
	X	Y	AND
	0	0	0
	0	1	0
	1	0	0
	1	1	1


NOTE: to replay, right click and select Play