To convert a binary number to base 10, we need to multiply each digit by its corresponding power of 2 and then add them together.
11001 base 2 can be converted to base 10 as follows:
(1 * 2^4) + (1 * 2^3) + (0 * 2^2) + (0 * 2^1) + (1 * 2^0) =
(16) + (8) + (0) + (0) + (1) =
25
Therefore, 11001 base 2 is equal to 25 base 10.
Convert 11001 base two to base 10
1 answer