(Choose 1 answer)
int[] A = new int[] { 1, 3, 5};
Which of the following is correct considering the code below?
int[] B = new int[] { 2, 4, 6};varq = from a in A
from b in B where a > b
select $"{a}>{b}";
foreach (var e in q)
{ } Console.Write(e);
A. 32 5 2 5>4
B. 6>3 52 4>1
C. 32 41 6>5
D. 6 5 4 3 2>1
Exit (18