MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the given code snippet? class Program { static void Main(string[] args) { String c = "i love Csharp"; bool a; a = c.StartsWith("I"); Console.WriteLine(a); Console.ReadLine(); } } |
| A. | True |
| B. | False |
| C. | 0 |
| D. | 1 |
| Answer» C. 0 | |