Vidyalelo
Python · Q18

MCQs for Python Data Types and Numeric Types Chapter

Programming · Python · question 18

Q18

What is the result of "5" + "3" ?

A.
8
B.
"8"
C.
53
D.
"53"
Answer

Answer: Option D

Solution

Answer: Option D
Solution:
The + operator concatenates strings, so "5" + "3" results in "53".