What will be the output of the following C# code? | Question 18

68. What will be the output of the following C# code?

using System;

namespace MyApplication {
  class Program {
    static void Main(string[] args) {
      string[] mobiles = {"iPhone", "Samsung", "Vivo"};
      Console.WriteLine(mobiles[0] + mobiles[2]);
    }
  }
}
  1. iPhone
  2. Vivo
  3. iPhoneVivo
  4. Runtime Error

Answer: C) iPhoneVivo

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.