Many of the Microsoft windows users complain their storage devices like hard disks and flash drives show a less capacity in windows operating systems than manufacturer mentioned capacity. For example 4 GB pen drive usually have a capacity of about 3.72 GB. 320 GB hard disk has about a capacity of about 300 GB. People give different opinions as reason for this. Some says windows allocate some space for back up process. Some accuse the manufacturer. But actually the mentioned capacity is there. Reason is a matter of using different unite.
The smallest unit we use to measure data is byte(B). Bit (b) is smaller than byte. But we usually don't use bit to measure size of stored data. Bit is used to measure data transfer rates. Size of stored data is measured in bytes. When numerical value of the bytes grows we use prefixes like Kilo, Mega, Giga and Tera. The problem starts from this point.
The smallest unit we use to measure data is byte(B). Bit (b) is smaller than byte. But we usually don't use bit to measure size of stored data. Bit is used to measure data transfer rates. Size of stored data is measured in bytes. When numerical value of the bytes grows we use prefixes like Kilo, Mega, Giga and Tera. The problem starts from this point.
In system international (SI) units these prefixes are used for powers of 10.
- Kilo = 103 = 1000
- Mega = 106 = 1000 * 1000
- Giga = 109 = 1000 * 1000 * 1000
- Tera = 1012 = 1000 * 1000 * 1000 * 1000
- Kilo = 210 = 1024
- Mega =220 = 1024 * 1024
- Giga = 230 = 1024 * 1024 * 1024
- Tera = 240 = 1024 * 1024 * 1024 * 1024
SI: 109 B = 1 GB
Binary: 230 B = 1 GB
Therefore SI 1 GB = Binary (1/230 )*109 = Binary 0.9313225 GB
SI 4 GB = 0.9313225 * 4 = Binary 3.725 GBNow I think you understand the reason for showing a lesser capacity in Windows. But Mac operating systems show the same storage value as same as the mentioned value in the cover. The reason is Mac operating systems use SI system not binary system.
Comments
Post a Comment