Concept:Binary multiplication follows the same rules as decimal multiplication but uses only the digits 0 and 1.Explanation:First, convert each binary number to decimal.1012=(1×4)+(0×2)+(1×1)=5112=(1×2)+(1×1)=3Now multiply the decimal values.5×3=15Convert 15 back to binary.15=8+4+2+1=11112Thus, 1012×112=11112.Answer:D. 11112