The & operator in Python performs bitwise AND operation. It takes the binary representations of two numbers and performs a bitwise AND operation on each pair of corresponding bits.
binary of 5 is : 101
binary of 3 is : 011
bitwise & : 001 which 1 in decimal so the correct answer is 1