82,545 views
1 vote
1 vote
Write an expression whose value is the concatenation of the three strigs name1, name2, and name3, separated by commas

User Vildan
by
2.5k points

1 Answer

27 votes
27 votes

Answer:

name1+","+name2+","+name3

Step-by-step explanation:

Given

name1, name2 and name3

Required

Concatenate, separated by comma (,)

To concatenate, we simply use the + operator.

So, the expression is:

name1+","+name2+","+name3

User ConvolutionBoy
by
3.0k points