Respuesta :
Answer:
Answered below
Explanation:
The property in number addition that is not found in string concatenation, although both use the '+' operator, is that in number addition, the expression value does not depend on the order of the numeric addition operands. Any order of arrangement of the operands produces the same value when they are added.
This is not so in string concatenation because different orders or the arrangement of different strings on concatenation, produce different results or values. For instance, the concatenation of 'He is a' + 'boy' results in 'He is a boy' whereas reversing the placements of both strings would result in a totally different value. This is not so in number addition where 4 + 2 gives the same value as 2 + 4.
Therefore the use of the '+' operator with string concatenation and with numerical additions produce different expression values where one depends on the order and one does not.
The '+' operator is used to concatenate strings, while it is also used to perform addition of numbers. The difference lies on that order of the string matters in concatenation while ordering does not matter in addition operation.
- Concatenation is used to join strings together, with the string on the right hands side coming first and before that on the left hand side.
- This isn't the case in addition operation as the arrangement of the numeric values does not matter.
Hence, the difference between string concatenation and addition.
Learn more : https://brainly.com/question/2576759