Identify the output of the code given below:
using System;
class Program {
static void Main(string[] args) {
long[] numbers = {10.5, 3.52, 4.3456, 100.43, 3.4 };
Console.Write(numbers[1]);
Console.ReadLine();
}
}
Reveal answer
Fill a bubble to check yourself