//**C# Sharp LINQ**//
//1. Write a program in C# Sharp to shows how the three parts of a query operation execute. Go to the editor
//Expected Output:
//The numbers which produce the remainder 0 after divided by 2 are : 0 2 4 6 8
using System;
using System.Linq;
public class Program
{
public static void Main()
int[] nums= new int[10]{0,1,2,3,4,5,6,7,8,9};
var query = from i in nums
where(i%2)==0
select i;
foreach(var num in query)
Console.WriteLine(num);
}