MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output for the given code snippet? class Program { static void Main(string[] args) { String s1 = "one"; String s2 = string.Concat(s1 + " " + "two"); Console.WriteLine(s2); Console.ReadLine(); } } |
| A. | One |
| B. | Two |
| C. | One two |
| D. | Two one |
| Answer» D. Two one | |