Multiple choice

String concatenation operator is

  1. str1+str2

  2. str1 ^ str2

  3. str1&str2

  4. none of these

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

In Visual Basic, the ampersand (&) is the string concatenation operator, so str1 & str2 joins two strings together. The plus sign (+) can also work but & is preferred because it explicitly handles string conversion. The caret (^) is for exponentiation in math.