Which of the following will be the correct output for the C#.NET co

Loading

Choose the correct option.

Which of the following will be the correct output for the C#.NET code snippet given below?

String s1 = "Nagpur"; 
String s2;
s2 = s1.Insert(6, "Mumbai");
Console.WriteLine(s2);

A. NagpuMumbair
B. Nagpur Mumbai
C. Mumbai
D. NagpurMumbai