Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#LINQ Where and SelectSingle-choice MCQ

Given numbers [1, 2, 3, 4, 5], what does this LINQ query produce?

var result = numbers.Where(n => n % 2 == 0) .Select(n => n * 10); Console.WriteLine(string.Join(",", result));