On execution of the following program, one statement will give an error message. Identify the statement. orange=10 cost_per_apple=1.5 total=orange x cost_per_apple print("Total is",total)
a)orange =10
b)cost_per_apple=1.5
c)total=orange x cost_per_apple
d)print("Total is",total)
Answers
Answered by
2
Answer:
c) total= orange x cost_per_apple
Explanation:
We don't use "x" to multiply. We use * instead. so option C give us an error
mark me as brainliest if u like!!
Similar questions