Question
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
c.
1, 3, 5
d.
Run time error
Posted under C# programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What will be the output of given code snippet?
Similar Questions
Discover Related MCQs
Q. Can we use linq to query against a DataTable?
View solution
Q. Choose the namespace in which the interface IEnumerable is declared?
View solution
Q. Choose the wrong statement about the LINQ?
View solution
Q. Assume 2 columns named as Product and Category how can be both sorted out based on first by category and then by product name?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C# programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!
Operating System
Dive deep into the core of computers with our Operating System MCQs. Learn about...
Microprocessor
Understand the heart of your computer with our Microprocessor MCQs. Topics include...
Java Programming
Level up your coding skills with our Java Programming MCQs. From object-oriented...