This lesson shows how bitwise AND, OR, and XOR work in C. We start with two integers, 6 and 11, and look at their binary forms. Bitwise AND compares each bit and sets the result bit to 1 only if both bits are 1, resulting in 2. Bitwise OR sets bits to 1 if either bit is 1, resulting in 15. Bitwise XOR sets bits to 1 only if the bits differ, resulting in 13. The execution table traces each step with binary and decimal results. The variable tracker shows how variables change after each operation. Key moments clarify common confusions about how these operators work. The quiz tests understanding by asking about results and changes. This helps beginners see exactly how bits combine in these operations.