Question: If the number 1011 in binary is converted to decimal, what is the result?
Options:
Correct Answer: 11
Solution:
To convert from binary to decimal, calculate: 1*2^3 + 0*2^2 + 1*2^1 + 1*2^0 = 8 + 0 + 2 + 1 = 11.