MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the given code snippet? static void Main(string[] args) { string c = "hello"; string c1 = c.Remove(1); Console.WriteLine(c1); Console.ReadLine(); } |
| A. | Ello |
| B. | H |
| C. | Hell |
| D. | None of the mentioned |
| Answer» C. Hell | |