Ask Question
21 February, 07:56

Dacey needs to calculate the sum of 4,794 and 5,632.

Which Python statement should Dacey use to calculate this?

A) print (4,794 + 5,632)

B) print (4,794 * 5,632)

C) print = 4,794 + 5,632

D) print ("4,794 + 5,632")

+1
Answers (1)
  1. 21 February, 08:25
    0
    A) print (4,794 + 5,632)

    Explanation:

    The sum means numbers when added. The plus sign is +.

    The asterisk, this symbol: * it means multiplication.

    If you input D) print ("4,794 + 5,632")

    The quotation marks indicate to output exact what's inside them.

    The output would be: 4,794 + 5,632

    Print should be used with brackets like print (), print = doesn't do anything.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Dacey needs to calculate the sum of 4,794 and 5,632. Which Python statement should Dacey use to calculate this? A) print (4,794 + 5,632) B) ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers