177k views
4 votes
When this operator is used with string operands it concatenates them, or joins them together.

A) &
B) *
C) %
D) +
E) None of the above

User Akst
by
7.5k points

1 Answer

0 votes

Final answer:

The + operator is used to concatenate or join string operands together.

Step-by-step explanation:

The correct answer is D) +.

When the + operator is used with string operands, it concatenates or joins them together. This means that the strings are combined to create a new string that contains the characters from both original strings.

For example, if we have two strings: str1 = 'Hello' and str2 = 'World', using the + operator like this: str1 + str2 will result in the string 'HelloWorld'.

User SNyamathi
by
7.5k points