Q84
What will be the output of the following C# code snippet? static void Main(string[] args) string h = "i lovelife"; string h1 = new string(h.Reverse().ToArray()); Console.WriteLine(h1); Console.ReadLine();
A.
efil evoli
B.
lifelove i
C.
efilevol i
AnswerD.
efil evol i
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board