MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output for the given set of code? static void Main(string[] args) { String c = "Hello"; String a ; a = c.Replace('l', 'w'); Console.WriteLine(a); Console.ReadLine(); } |
| A. | Helloll |
| B. | Hewlo |
| C. | Helwo |
| D. | Hewwo |
| Answer» E. | |