Exam-style question
Try this first
Which operation is used to invert every bit in a bit pattern?.
- A.AND
- B.OR
- C.NOT
- D.XOR
Model answer
What a good answer should say
- NOT
Explanation
Why this works
The NOT operation inverts each bit independently: every 1 becomes 0 and every 0 becomes 1.
Common mistake
No common mistake is linked to this question yet.
