MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the given code snippet? class Program { static void Main(string[] args) { char []chars = {'a', 'b', 'c'}; String s = new String(chars); Console.WriteLine(s); Console.ReadLine(); } } |
| A. | A |
| B. | B |
| C. | C |
| D. | Abc |
| Answer» E. | |