actinglife5334 actinglife5334 07-02-2024 Computers and Technology contestada What is the output of the code fragment given belowint i = 0;int j = 0;while (i < 125){i = i + 2;j++;}System.out.println(j);a) 0b) 62c) 63d) The code fragment displays no output because it does not compile.