Vidyalelo
C# Programming · Q65

LINQ (Language

Programming · C# Programming · question 65

Q65

What will be the output of the following C# code snippet? class Program static void Main(string[] args) int[] nums = 1, -2, 3, 0, -4, 5; var posNums = from n in nums where n >= 0 select n; foreach (int i in posNums) Console.Write(i + " "); Console.WriteLine(); Console.ReadLine();

A.
0, 1, -2, -4, 5
B.
1, 3, 0, 5
Answer
C.
1, 3, 5
D.
Run time error

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board