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

Posted on by