Q1. In the binary number 1011, what is its decimal value?
Explanation
Binary is a base-2 number system, so each place represents a power of 2. For 1011, read from right to left: 1 × 2^0 = 1, 1 × 2^1 = 2, 0 × 2^2 = 0, and 1 × 2^3 = 8. Adding these place values gives 8 + 0 + 2 + 1 = 11. The cue in the question is the word "binary", so the digits must be evaluated with powers of 2, not powers of 10.
