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); string d = b.TrimStart('I', 'l', 'o', 'H'); Console.WriteLine(d); Console.ReadLine(); } |
| A. | Ilove CSHARP |
| B. | Love CSHARP |
| C. | Ve CSHARP |
| D. | Ve CSARP |
| Answer» D. Ve CSARP | |