Q81
What will be the output of the following C# code? string s1 = " I AM BEST "; string s2; s2 = s1.substring (5, 4); Console.WriteLine (s2);
A.
AM BEST
B.
I AM BES
C.
BEST
AnswerD.
I AM
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board