Autosave: 2024-04-20 15:30:05

This commit is contained in:
thomasabishop 2024-04-20 15:30:05 +01:00
parent 4dcd427e38
commit 64707584ae
2 changed files with 8 additions and 0 deletions

Binary file not shown.

View file

@ -62,4 +62,12 @@ b = 7 = 0111
This leaves us with 0111 which is equal to 7 in denary.
## Why use them?
Bitwise operations are more of a hallmark of lower-level programming. As bit
operations are the fastest and lowest level of computation, being able to
directly access and operate on bits within a programming language can be
beneficial when efficiency and speed of execution is a factor or when memory is
constrained.
## Related notes