(Choose 1 answer)
What is the exact output of the below code?
static void Main(string[] args)
{ int[] A = new int[] { 1, 2, 3, 4, 5};var q = from e in A where e > 2 foreach (int e in q){}Console.Write(e);Console.WriteLine();}
orderby e select e;
A. 345
B. 123
C. 543
D. 435
Exit 23