Number Systems
Binär-/Hexadezimal
Binär (bsp. 70)
1024
512
256
128
64
32
16
8
4
2
1
0
0
0
0
1
0
0
0
1
1
0
Bsp. 70 = 1000110
0 · 1 = 0
1 · 2 = 2
1 · 4 = 4
0 · 8 = 0
0 · 16 = 0
0 · 32 = 0
1 · 64 = 64
——————
70
Hexadecimal
0
0
1
1
2
2
3
3
4
4
5
5
6
6
7
7
8
8
9
9
A
10
B
11
C
12
D
13
E
14
F
15

Grössen
Bytes
1 Bit = 0 oder 1
Nibble = 4 Bits | 1 Hex
1 Byte = 8 Bits oder 2 Hex
1 Kilobyte (KB) = 1,024 Bytes
1 Megabyte (MB) = 1,024 Kilobytes = 1,024 * 1,024 Bytes
1 Gigabyte (GB) = 1,024 Megabytes = 1,024 * 1,024 * 1,024 Bytes
Und für die Umrechnung von Bytes in Bits multiplizierst du einfach die Anzahl der Bytes mit 8.
1 Byte = 8 x 1 Bit = 8 Bits
Beispiel
5 GB um auf mbit: 5 * 1024 = 5120 MB * 8 = 40960 Mbit
Name
Binär
Hex
Dezimal
Byte
1111 0101
F5
245
1. Nibble
1111
F
15
2. Nibble
0101
5
5
Last updated