Question: What happens when you concatenate two strings?
- You cannot concatenate strings in .NET.
 - The second string object is modified so it contains the concatenated strings.
 - A third string object is created containing the concatenated strings.
 - The first string object is modified so it contains the concatenated strings.
 
Answer: The correct answer of the above question is Option C:A third string object is created containing the concatenated strings.