>>>‟2‟+‟3‟ का आउटपुट क्या है
What is the output of >>>‟2‟+‟3‟
A
2 3
B
„2+3‟
C
‟23‟
D
None of these
Explanation
The code:
'2' + '3'
concatenates the two strings '2' and '3'. Since both are strings, it doesn't perform arithmetic addition but rather combines them into one string.
Output: '23'
Answer: (C) '23'
Correct Answer: C) ‟23‟