Q57
What will be the output of the following C# code? static void Main(string[] args) String obj = "hello"; String obj1 = "world"; String obj2 = obj; string s = obj + " " + obj1; Console.WriteLine(s.Substring(6 ,5)); Console.ReadLine();
A.
hello
B.
orld
C.
world
AnswerD.
o world
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board