Explore IDNLearn.com's extensive Q&A database and find the answers you're looking for. Discover prompt and accurate answers from our experts, ensuring you get the information you need quickly.

what is the output of this line of code?
print("hello"+"goodbye")
-"hello"+"goodbye"
-hello + goodbye
-hello goodbye
-hellogoodbye


Sagot :

The first one
“hello” + “goodbye”

Answer:

“hello” + “goodbye”

Explanation: