1.

What is output of the given set of Code? 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


Discussion

No Comment Found