Which of these operators can be used to concatenate two or more String objects?

a) +
b) +=
c) &
d) ||

1 thought on “Which of these operators can be used to concatenate two or more String objects?”

  1. a
    Explanation: string s1 = “Hello”+ ” I ” + “Love” + ” ComputerScience “;
    Console.WriteLine(s1);
    Output :
    Hello I Love ComputerScience.

Leave a Comment