Vidyalelo
C# Programming · Q75

Arrays and Strings in C Sharp

Programming · C# Programming · question 75

Q75

What will be the output of the following C# code snippet? static void Main(string[] args) String c = "Hello i love you"; String a ; a = c.Substring(12, 3); Console.WriteLine(a); Console.ReadLine();

A.
ove
B.
you
C.
yo
Answer
D.
love you

Answer: Option C

Solution

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