fill in the blanks (DA)16 = (______)2
Answers
Answer:
The answer is:
(DA)16 = (11011010)2
Explanation:
For converting a hexadecimal number into binary, you need to change each digit of hexadecimal into the equivalent binary 4-bit group.
- The hexadecimal number system has a total of 16 digits starting from 0 to F(ie 15)
- and the Binary number system has only two-digit that are 0 and 1.
Conversion of hexadecimal into binary is done on the basis of the below table:
HEXADECIMAL BINARY
0 0000
1 0001
2 0010
3 0011
4 0100
5 0101
6 0110
7 0111
8 1000
9 1001
A 1010
B 1011
C 1100
D 1101
E 1110
F 1111
#SPJ2