Page 1 of 1

In the following C# code, what does the output represent?

Posted: Wed Jul 13, 2022 7:57 pm
by answerhappygod
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; int len = posNums.Count(); Console.WriteLine(len); Console.ReadLine(); }}
a) Execution of code with nothing being printed
b) Execution of code with printing all numbers
c) Execution of code with counting total numbers greater than zero
d) Run time error