Find the output of the following program.
public class Solution
public static void main(String[] args)
{
 int[] x = {240, 400, 028};
 for(int i = 0; i < x.length; i++)
{
 System.out.print(x[i] + " "); 
}
 } 
}

Posted on by