(Choose 1 answer)
What is the exact output of this code?
int[] Prices = new int[] { 150, 110, 190, 210, 160, 240, 170, 220, 200 };IEnumerable<int> q = from r in Prices where r > 200 orderby r select r Console.WriteLine($"{q.First())");
A. 210
B. 240
C. 200
D. 220
Exit 44