1)

What will the output of the given set of Code?

static void Main(string[] args)
{
String name = "Dr.Saju";
Console.WriteLine("Good Morning" + name);
}


A) Dr.Saju

B) Good Morning

C) Good MorningDr.Saju

D) Good Morning Dr.Saju

Answer:

Option C