Question: IN JAVA What is printed as a result of executing the following fragment of code? int j = 6; int m = j - 2;
IN JAVA
What is printed as a result of executing the following fragment of code? int j = 6; int m = j - 2; while (m < 19) { j = j + 2; System.out.println(m - 1); m = j + 3; } Show details of workings.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
