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