Q. What is the output of `print('5' + '5')`?
β
Correct Answer: (B)
55
Explanation: Strings are concatenated using `+`, so `'5' + '5'` results in `'55'`.