Q. What is the output of the following code?
Code:print( 'Hello' + ' ' + 'World' )
β
Correct Answer: (A)
Hello World
Explanation: The `+` operator concatenates strings including spaces.