44.8k views
1 vote
What is the output of this line of code

print("hello" + "goodbye")
A - "hello" + "goodbye"
B- hello + goodbye
C - hello goodbye
D - hellogoodbye

User Dutchman
by
3.1k points

2 Answers

0 votes

Answer:

D

Step-by-step explanation:

User Jordan Morris
by
2.8k points
3 votes

Answer:

D - hellogoodbye

Step-by-step explanation:

since your merging two string together you will simply just get one string in total

User Neil Slater
by
3.3k points