C Sharp (C#) - LINQ Fundamentals
What will be the output of this LINQ query?
int[] numbers = {1, 2, 3, 4, 5};
var result = from n in numbers where n > 3 select n;
foreach(var num in result) Console.Write(num + " ");