Convert the binary number (10110)₂ to decimal.
Convert the binary number (10110)₂ to decimal.
Answer
22
Theory
Binary-to-decimal conversion: multiply each bit by 2 raised to its position (from right, starting at 0) and sum.
Solution
1·16 + 0·8 + 1·4 + 1·2 + 0·1 = 16 + 4 + 2 = 22.