Q51
What will be the output of the following C# code? static void Main(string[] args) String a = "Ilove"; String b = "CSHARP"; b = string.Concat(a, ' ', b); Console.WriteLine(b); Console.ReadLine();
A.
IloveCSHARP
B.
I loveCSHARP
C.
Ilove
D.
Ilove CSHARP
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board