kiaramarie894 kiaramarie894 18-01-2024 Computers and Technology contestada What is the output of the following code fragment? int i = 1; int j = 1; while (i < 5) { i++; j = j *2; } System.out.printin(j); A) 64 B) 42 C) 16 D) 4 E) 8