Bitwise Operators: A Comprehensive Guide

12345678910
Across
  1. 1. – The value on which a bitwise operator performs its action.
  2. 3. – A pattern of bits used to extract or modify specific bits.
  3. 6. – Number system used for performing bitwise operations.
  4. 8. – Operation that inverts all bits of a number.
  5. 10. – Operator that shifts bits to the right, dividing the number by two.
Down
  1. 2. – Unary bitwise operator that flips each bit.
  2. 4. – Operator that shifts bits to the left, multiplying the number by two.
  3. 5. – Bitwise operator that sets a bit to 1 only if the two bits are different.
  4. 7. – Bitwise operator that sets a bit to 1 only if both bits are 1.
  5. 9. – Bitwise operator that sets a bit to 1 if at least one bit is 1.