Concept:Use operator precedence: exponents first, then multiplication/division from left to right, and finally addition.Explanation:Start with the expression: 2∗6+42∗2∗42Evaluate the exponent first.42=16The expression becomes: 2∗6+42∗2∗16Perform multiplication and division from left to right.2∗6=12And 42∗2∗16=0.5∗2∗16=16Finally add the results.12+16=28Answer:Option C. 28.