Question: Java: What will be the value of sum after the following nested loop is executed? sum = 0; i = 0; while ( i <
Java:
What will be the value of sum after the following nested loop is executed?
sum = 0;
i = 0;
while ( i < 5 ) {
j = 5;
while (i != j) {
sum += j;
j--;
}
i++
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
