Question: What is the decimal equivalent of the binary number \'1101\'?
Options:
Correct Answer: 13
Solution:
\'1101\' in binary is calculated as 1*2^3 + 1*2^2 + 0*2^1 + 1*2^0 = 8 + 4 + 0 + 1 = 13.