christianmason7821 christianmason7821 22-01-2024 Computers and Technology contestada What is the value of k after this code completes?int i = 0, j = 0, k = 0;while (i < 3) { i++; j = 0; while (j < 3) { j++; k = k + i + j; } } 1) 36 2) 54 3) 9 4) 6