1.

What will be output of the following set of code : static void Main(string[] args) { string s1 = "Hello I Love Csharp "; Console.WriteLine(Convert.ToChar( (s1.IndexOf('I') - s1.IndexOf('l')) * s1.IndexOf('p')); Console.ReadLine(); }

A. I
B. Hello I
C. Love
D. H
Answer» E.


Discussion

No Comment Found