What is the output of this program?

x = "7"

y = "9"

print (x + y)

(1 point)
Responses

“7” + “9”

“7” + “9”

7 + 9

7 + 9

79

79

16

1 answer

The output of the program will be:

79

This is because both x and y are strings, and the + operator concatenates them. Thus, the result is the string "79". Since the options you've provided seem to repeat a few choices, the correct response that directly represents the output as it will appear is:

79