Multiple choice

________operators are used to join one or more text strings to produce a single piece of text.

  1. Comparison

  2. Arithmetic

  3. Concatenation

  4. Reference

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Concatenation operators (like & in Excel or + in some languages) are specifically used to join text strings together. For example, "Hello" & " " & "World" produces "Hello World". Arithmetic operators calculate numbers, comparison operators compare values, and reference operators work with cell ranges.