Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#Single-choice MCQ

What is the value of result?

var nums = new[] { 1, 2, 3, 4 }; var result = nums.Where(n => n % 2 == 0).Select(n => n * 10); Console.WriteLine(string.Join(",", result));