Bitwise Operation

From Rice Wiki
Revision as of 20:12, 2 April 2024 by Admin (talk | contribs) (Created page with "A '''bitwise operation''' is an operation that is done on a series of bits. There are many bitwise operators, most of them being pretty self explanatory. I'll note down anything that seems interesting to me. ''Exclusive or (XOR)'' operator can be used to flip singular bits, since against 1, XOR flips a bit, whereas against 0, XOR does nothing. Category:Computer Science")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A bitwise operation is an operation that is done on a series of bits. There are many bitwise operators, most of them being pretty self explanatory. I'll note down anything that seems interesting to me.

Exclusive or (XOR) operator can be used to flip singular bits, since against 1, XOR flips a bit, whereas against 0, XOR does nothing.