24-bit address in hexadecimal format

How many hexadecimal digits does a 24-bit memory address have?

+3
source share
4 answers

One hexadecimal digit corresponds to 4 binary digits (bit)

for 24 bits, there are 3 bytes (8 bits) that make up 6 hexadecimal digits.

+5
source
  • 8 bits = 1 byte
  • 24 bits = 3 bytes
  • 1 byte = 2 hexadecimal characters
  • 2 bytes = 4 hexadecimal characters
  • 3 bytes = 6 hexadecimal characters
+4
source

, 24- . :

Hex  Binary       Hex  Binary
---  ------       ---  ------
 0    0000         8    1000
 1    0001         9    1001
 2    0010         A    1010
 3    0011         B    1011
 4    0100         C    1100
 5    0101         D    1101
 6    0110         E    1110
 7    0111         F    1111
+2

4 , 16, 2 ^ 4 , 4 2

+2

All Articles