Sail E0 Webinar
Question
For the given set of codes, which query will work according to the set of code?class Program{    static void Main(string[] args)    {        int[] nums = { 1, -2, 3, 0, -4, 5 };        int len = /*_________________ */        Console.WriteLine("The number of positive values in nums: " + len);        Console.ReadLine();    }}
Options:
A .  from n in nums where n > 0 select n
B .  from n in nums where n > 0 select n.Count()
C .  (from n in nums where n > 0 select n).Count();
D .  Both b & c
Answer: Option C





Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers