. Suppose the following java code. hat is stored in list[3] after the code executes? nt[] list = new int [4]; list [0] =
Posted: Tue Jul 12, 2022 8:11 am
. Suppose the following java code. hat is stored in list[3] after the code executes? nt[] list = new int [4]; list [0] = 5; for (int i = 0; i < 4; i++) { list = i* i + 5; } 19 O 14 09 06 if(i > 2) list = 2* list - list[i-1];