Respuesta :

Answer:

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

When a user run "print("2 + 7")", the result will be "2+7" and when a user run "print(3 + 1)", the result will be "4".

Programming

According to the question,

print("2 + 7")

print(3 + 1)

In the above two codes, Due to the general contained double quote (" "), this same software will treat ("2+7") throughout the double quotation as little more than a string, i.e., "2+7."

Whenever users type 3+1 without any of the quotation marks, this should perform the addition between integer digits as well as output the outcome of adding 3 and1, i.e., "4".

Thus the above response is right.

Find out more information about programming here:

https://brainly.com/question/23275071