this post was submitted on 10 Aug 2023
0 points (50.0% liked)
Explain Like I'm Five | Don't Panic!
235 readers
1 users here now
Explain Like I'm Five is the best forum and archive on the internet for layperson-friendly explanations. Don't Panic!.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Computers deal with powers of 2. They read data as two states, either 1 or 0, calles binary. But you need to create chuncks of data. So 4 bits is a nibble and 8 bits is a byte. We mainly deal with bytes in storage computations.
So 2^2 = 4, 2^3=8, 2^4 =16.......2^8 = 256, 2^10= 1024.
So if we represent that using metric system of base 10 decimal. People tend to say 1KiloByte ( 1000 bytes), but a computer sees 1024bits due to the power of 2 groupings.
Man i suck at ELi5, hope that made any sense.