Concept:Binary numbers use base 2. Convert to denary by multiplying each digit by its place value, which is a power of 2, and adding the results.Explanation:The binary number is 1011001012. It has 9 digits, so the leftmost place value is 28.Write the place values from right to left: 20,21,22,23,24,25,26,27,28.Now multiply each binary digit by its place value:1×28=2560×27=01×26=641×25=320×24=00×23=01×22=40×21=01×20=1Add these values: 256+64+32+4+1=357.Answer:C. 357