(46)
(Choose 1 answer)
Assumes that "a" is an array of integers. Which of the following is correct about the below LINQ statement?var q = from xin a
where x > 5 && x > 2
select x;
A. This LINQ query selects all elements greater than 5 in the data source "a"
B. Compile-time error because of the use of "var"
C. Run-time error since the condition is wrong "x>5 && x>2"
D. This LINQ query selects all elements greater than 2 in the data source "a"
Elt