Binary and Decimal and Hexadecimal Conversions
Hex 1234 is what in decimal?
(1 × 16³) + (2 × 16²) + (3 × 16¹) + (4 × 16⁰) or 4,660
Hex 3BA4 is what in decimal?
(3 × 16³) + (11 × 16²) + (10 × 16¹) + (4 × 16⁰) or 15,268
Converting hexadecimal to decimal
(D3 × 16³) + (D2 × 16²) + (D1 × 16¹) + (D0 × 16⁰)
Hexadecimal Subtract C6 75 A2 47
-₁ C6 75 A2 47 ------- 24 2E
What is 13 - 7 in binary format?
0 1 1 0 1 (+13) 1 1 0 0 1 (-7) --------- 0 0 1 1 0 (+6)
Binary 0000 to decimal and hexadecimal is?
0 and 0
Translate the binary integer 000101101010011110010100 to hexadecimal
0001 0110 1010 0111 1001 0100 1 6 A 7 9 4 16A794
Binary 0001 to decimal and hexadecimal is?
1 and 1
Binary 1010 to decimal and hexadecimal is?
10 and A
Binary 1011 to decimal and hexadecimal is?
11 and B
Binary 1100 to decimal and hexadecimal is?
12 and C
Binary 1101 to decimal and hexadecimal is?
13 and D
Binary 1110 to decimal and hexadecimal is?
14 and E
Binary 1111 to decimal and hexadecimal is?
15 and F
Binary 0010 to decimal and hexadecimal is?
2 and 2
Binary 0011 to decimal and hexadecimal is?
3 and 3
Add Hexadecimals 36 28 28 6A 42 45 58 B5
36 28 28 6A 42 45 58 B5 78 6D 80 B5 ↑ 21/16 = 1, rem 5
Each hexadecimal digit relates directly to a ____-bit binary pattern.
4
Binary 0100 to decimal and hexadecimal is?
4 and 4
Binary 0101 to decimal and hexadecimal is?
5 and 5
Binary 0110 to decimal and hexadecimal is?
6 and 6
Binary 0111 to decimal and hexadecimal is?
7 and 7
Binary 1000 to decimal and hexadecimal is?
8 and 8
Binary 1001 to decimal and hexadecimal is?
9 and 9
Hexadecimal Addition
Divide the sum of two digits by using the number base (i.e., 16) the quotient becomes the carry value, and the remainder is the sum digit.
What is the decimal representation of 422 to hexadecimal?
Division Quotient Remainder 422/16 26 6 26/16 1 A 1/16 0 1 =1A6
Hexadecimal Subtraction
When a borrow is required from the digit to the left add 16 (decimal) to the current digits value.