Finished checkpoint 1 boolean qs

This commit is contained in:
zoeyande2
2026-03-02 16:46:00 -05:00
parent bfc0775376
commit 013b826fb7
3 changed files with 164 additions and 1 deletions

View File

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