viewing paste Unknown #27578 | Text

Posted on the
1 2 3 4 5 6 7 8
Here is an expression which contains the + operator in several places on the RHS of an assignment statement (and we don't need to know anything about the shaded variable on the LHS to answer the question):
 
   someVar    = '1' + '2' + '3' ;
In this expression ...
 
    A.  ... the + operator represents string concatenation.
    B.  ... the + operator represents addition.
 
Viewed 748 times, submitted by Guest.