MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output for the given set of 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 |
| Answer» E. | |