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


Answer :

The first one
“hello” + “goodbye”

Answer:

“hello” + “goodbye”

Explanation: