x.length is 25 public class MainClass { public static void main(String args[]) { int[] x = new int[25]; System.out.println(x.length); } }
25