Day 14 Recap Questions
  1. How do we read/write binary files in C?
  2. What character represents the bitwise XOR operation? How does it differ from the OR operation?
  3. What happens if you apply the bitwise operation on an integer value? (extra: what if we apply to floats)
  4. What is the result of (15 >> 2) || 7?
  5. What is the result of (15 >> 2) | 7?