Vidyalelo
C# Programming · Q96

Miscellaneous in C Sharp

Programming · C# Programming · question 96

Q96

What will be the output of the following C# code snippet? class Program static void Main(string[] args) String s = "Hello World"; int i = s.IndexOf('o'); int j = s.LastIndexOf('l'); Console.WriteLine(i + " " + j); Console.ReadLine();

A.
9 5
B.
4 9
Answer
C.
9 0
D.
9 4

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board