answersLogoWhite

0

This question comes out of the computer world. In programming, if 2 is a string, the "+" combines the 2 string items together making it 22. Of course, mathematically the numbers as integers would be added together to make 4. e.g. in Python:

print('2' + '2'), returns 22

print(2 + 2), returns 4

User Avatar

Anonymous

5y ago

What else can I help you with?