What will be the value of x[5] after the following code is e…
What will be the value of x[5] after the following code is executed? final int SUB = 8; int[] x = new int[SUB]; int y = 100; for(int i = 0; i < SUB; i++) { x[i] = y; y += 10; }
Read Details