Write a java application that prints all even numbers from 2 to 50 with the aid of following specifiatiions start a new line after every multiple of 20 use for loop.
class Evens
{
& public static void main(String[] args)
& {
int i=2;
int a=2;
while (i<=50)
{
& System.out.print(i+" ");
& i+=2;
& a+=2;
& if (a>20)
& {
& System.out.println();
& a=2;
& };
};
};