(42
Answer (Choose 1 answer)
static void Main(string[] args){
What is the output of the following code?
int a = { 17, 12, 9, 18, 15);IEnumerable<int> x = from n in a
where n % 3 == 0
select n;
Console.WriteLine(x.Last());
}
A. 15
B. 9
C. 12
D. 18
Elt