Vidyalelo
C# Programming · Q57

Arrays and Strings in C Sharp

Programming · C# Programming · question 57

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
Answer
D.
o world

Answer: Option C

Solution

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