Concept:Binary addition is similar to decimal addition, but it uses only base 2 digits: 0 and 1.Explanation:Add the binary numbers column by column from right to left.Rightmost column: 02+12=12.Next column: 12+02=12.Leftmost column: 12+12=102, so write 02 and carry 12 to the next column.Combine the carry with the written digits to get 10112.Thus, the sum is 1102+1012=10112.Answer:D. 10112