84.
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();
}

Read More Section(File Handling and Input Output in C Sharp)

Each Section contains maximum 100 MCQs question on File Handling and Input Output in C Sharp. To get more questions visit other sections.