asked 76.2k views
22 votes
What is displayed when you run the following program?

print("30 + 10")
print(5 + 8)

30 + 10
5 + 8
30 + 10, , 5 + 8

40
13
40, , 13

30 + 10
13
30 + 10, , 13

40
5 + 8
40, , 5 + 8

asked
User Sigy
by
8.1k points

1 Answer

11 votes

Answer:

print("30 + 10") will print 30 + 10 print(5+8) will print 13

Step-by-step explanation:

This is in python the "print" will simply print text.

answered
User DuXing
by
8.9k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.