What is the output? SAY "TCS"||"USWEST"
-
TCSUSWEST
-
TCS USWEST
-
TCS USWEST
-
None of the above
A
Correct answer
Explanation
The || operator in REXX concatenates two strings without any space. 'TCS'||'USWEST' produces 'TCSUSWEST'. This is straightforward concatenation - the two strings are joined exactly as they are, with no space or separator added. Option B and C incorrectly add spaces, which is not what || does.