Discussion :: C#.Net MCQs
-
Select output of the given set of Code : static void Main(string[] args){String name = "Dr.Gupta";Console.WriteLine("Good Morning" + name);}
Answer : Option C
Explanation :
How to intialize a string variable and concatenate string using '+' operator. Output:Good Morning Dr.Gupta.
Be The First To Comment