CBSE Class 12 Computer Science Question 46 of 105

Python Revision Tour II — Question 7

Back to all questions
7
Question

Question 7

You can combine a numeric value and a string by using the + symbol.

Answer

False

Reason — The + operator has to have both operands of the same type either of number type (for addition) or both of string type (for concatenation). It cannot work with one operand as string and one as a number.