eli5 why is file/folder size is in bytes but speed counts are mostly in bits?

442 views

eli5 why is file/folder size is in bytes but speed counts are mostly in bits?

In: 2

15 Answers

Anonymous 0 Comments

The difference is largely historical.

Data storage devices are byte-addressable, in that the smallest unit of data you can read one write is one byte. We long ago standardized on 8-bits per byte, but in early computing there were different byte sizes.

Early data transmission devices (what we now call network hardware) measured their speed in bits per second. The byte wasn’t standardized as 8 bits yet, and different ends of the transmission might have different byte sizes.

Modern networking gear basically always sends data in some whole number of 8-bit bytes (in the context of networking they are sometimes called octets to be absolutely clear they are 8-bit units), but the bits per second terminology persists.

You wouldn’t want to be the manufacturer who unilaterally shifts to bytes per second when you peers are still marketing bits per second, for fear of people thinking your stuff is slower than it is!

You are viewing 1 out of 15 answers, click here to view all answers.