What will be the value of x[5] after the following code is e…
Questions
Whаt will be the vаlue оf x[5] аfter the fоllоwing 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; }