Ask Question
7 December, 10:14

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")

+4
Answers (1)
  1. 7 December, 13:50
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers