We learned about data compression in my class last week and I'm confused about a certain strategy.
My teacher showed us an example where he truncated 8-bit characters by cutting off the first 5 bits, which were all zeros.
- A is 0000 0100 which is truncated to 100
- B is 0000 0010 which is truncated to 010
- The last one is 0000 0011 which is truncated to 011
What type of data compression is this?