Q. What is the output of this code?
Code:
print('5' + '5')
β
Correct Answer: (A)
55
Explanation: String concatenation of '5' and '5' results in '55'.