निम्नलिखित कथन का परिणाम क्या होगा?
What will be the output of following statement ?
>>>”m”+”nl”
A)
B)
C)
D)
Explanation:
Let's break down the statement:
"m" + "nl"
- This is string concatenation, where the string
"m"
is combined with the string"nl"
. - The result will be the two strings joined together:
"mnl"
.
Answer: (B) 'mnl'.