Examveda

What will be the output of the following C# code snippet?
static void Main(string[] args)
{
    StringBuilder sb = new StringBuilder("hello world");
    sb.Insert(6, "good");
    Console.WriteLine(sb);
    Console.ReadLine();
}

A. hello 6world

B. hello good world

C. hello goodworld

D. None of the above

Answer: Option C


Join The Discussion

Related Questions on File Handling and Input Output in C Sharp