Ask Question
21 July, 19:25

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 July, 21:48
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers