Concept:Substitute the given values of variables into the BASIC expression and apply the order of operations (exponent, multiplication, addition).Explanation:The BASIC statement is 4∗W2+2∗Y.Given W=5 and Y=10.Replace the variables:4∗(5)2+2∗(10).First, calculate the exponent: (5)2=25.Then perform the multiplications:4∗25=100 and 2∗10=20.Finally, add the two products:100+20=120.Thus, the expression evaluates to 120.Answer:D. 120