Concept:Convert each binary number to its decimal equivalent by summing the product of each digit and its corresponding power of 2, then add the decimals.Explanation:First, convert 11011012 to decimal.Write it as 1×26+1×25+0×24+1×23+1×22+0×21+1×20.Compute each term: 64+32+0+8+4+0+1=109.So 11011012=10910.Next, convert 10110112 to decimal.Write it as 1×26+0×25+1×24+1×23+0×22+1×21+1×20.Compute each term: 64+0+16+8+0+2+1=91.So 10110112=9110.Now add the two decimals: 109+91=200.Thus (1101101+1011011)2=(200)10.Answer:(200)10 (Option C).