

MCQOPTIONS
Saved Bookmarks
1. |
Correct output for the C#.NET code given below is :
string s1 = " I AM BEST "; string s2; s2 = s1.substring (5, 4); Console.WriteLine (s2); |
A. | AM BEST |
B. | I AM BES |
C. | BEST |
D. | I AM |
Answer» D. I AM | |