8000 Power of Two · euccas/expmap Wiki · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Power of Two

Euccas Chen edited this page Mar 10, 2022 · 1 revision

Power of 2

1 GB = 1024 MB = 1024 * 1024 KB = 1024 * 1024 * 1024 Byte
1 GB = 2^10 MB = 2^20 KB = 2^30 Byte
1 GB = 0b1000000000000000000000000000000 Byte
1 GB = 0x40000000 Byte

4 GB = 4 * 2^30 Byte = 2^32 Byte
4 GB = 0b100000000000000000000000000000000 Byte
4 GB = 0x100000000 Byte

512 MB = 2^29 Byte
512 MB = 0b100000000000000000000000000000 Byte
512 MB = 0x20000000 Byte

128 MB = 2^27 Byte
128 MB = 0b1000000000000000000000000000 Byte
128 MB = 0x8000000 Byte

1 MB = 2^10 Byte
1 MB = 0b10000000000 Byte
1 MB = 0x400 Byte
Clone this wiki locally
0