Q45
What is the output of print("Hello" + " " + "World") ?
A.
"Hello World"
AnswerB.
"hello world"
C.
"Hello+World"
D.
"Hello" " " "World"
Answer: Option A
Solution
Answer: Option A
Solution:
The + operator concatenates the strings.