>>>‟2‟+‟3‟ का आउटपुट क्या है
What is the output of >>>‟2‟+‟3‟
A)
B)
C)
D)
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'