Q. What will be the output of the following C# code?
Code:static void Main(string[] args)
{
String name = "Dr.Gupta";
Console.WriteLine("Good Morning" + name);
}
β
Correct Answer: (C)
Good Morning Dr.Gupta