Question 80934
Convert 1011 (binary) to its decimal equivalent:

Reading the binary number from right-to-left:

{{{1X2^0 = 1}}}
{{{1X2^1 = 2}}}
{{{0X2^2 = 0}}}
{{{1X2^3 = 8}}} 
Adding these together:
8+0+2+1 =11
Answer C. is correct.