124k views
5 votes
What is the result when you run the following program?

print("2 + 7")
print(3 + 1)
2+7
4
9
3+1
O an error statement
9
4

User Zhentao
by
5.9k points

1 Answer

0 votes

Answer:

The result will be 2+7 for the statement PRINT ("2+7") and 4 for the statement PRINT (3+1).

User Wumms
by
4.7k points