answered checkpoint 1

This commit is contained in:
owengavi2
2026-03-06 16:37:07 -05:00
parent 1041d25474
commit dd619f284f
2 changed files with 13 additions and 0 deletions

1
.envrc Normal file
View File

@@ -0,0 +1 @@
source .venv/bin/activate

View File

@@ -21,16 +21,28 @@ The answers to the first two questions are given.
3. 00000001 3. 00000001
~a >> 3
4. 10000000 4. 10000000
a << 3
5. 01010000 5. 01010000
a & ~b
6. 00001010 6. 00001010
~a & b
7. 01010000 7. 01010000
a & ~b
8. 10101011 8. 10101011
b | (~a >> 3)
## Integer questions ## Integer questions
These questions are difficult! Try exploring ideas with `Bits` These questions are difficult! Try exploring ideas with `Bits`