The Java Program: Performance1.java

  1 class Performance1 {
  2    public static void main (String args[]) {
  3       int [] ia = new int [400000];
  4       try {
  5          for (int i=0; i<ia.length; i++) {
  6             ia[i]=i;
  7          }
  8       } catch (Exception e) {
  9       }
 10    }
 11 }