Explore IDNLearn.com's extensive Q&A database and find the answers you need. Ask any question and receive timely, accurate responses from our dedicated community of experts.

Write an expression whose value is the concatenation of the three strigs name1, name2, and name3, separated by commas

Sagot :

Answer:

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

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