Python में "A" + "BC" का आउटपुट क्या होगा?
What will be the output of "A" + "BC" in Python?
A
ABC
B
A BC
C
A+BC
D
Error
Explanation
Python में + operator को strings के साथ इस्तेमाल करने पर यह concatenation (जोड़ना) करता है।
"A" + "BC"means: दोनों strings को जोड़ना
Output: "ABC"
🔹 Example:
Correct Answer: A) ABC