KnowledgeBoat Logo
LoginJOIN NOW

Computer Applications

How many times will the following loop execute? Write the output of the code:

for(int j = 12; j >= 2; j -= 2) {
    if(j % 5 == 0)
        continue;
    System.out.println(j);
}

Java Iterative Stmts

2 Likes

Answer

Loop executes six times.
Output
12
8
6
4
2

Reason

Step 1: Understanding the Loop

  • Initialization: j = 12
  • Condition: j >= 2 (Loop runs while j is ≥ 2)
  • Update: j -= 2 (Decrement j by 2 each iteration)
  • if (j % 5 == 0) continue;
  • Skips printing if j is divisible by 5.

Step 2: Iterations Breakdown

IterationValue of jCondition j % 5 == 0Action
1st12Not divisible by 5Print 12
2nd10Divisible by 5Skip (continue)
3rd8Not divisible by 5Print 8
4th6Not divisible by 5Print 6
5th4Not divisible by 5Print 4
6th2Not divisible by 5Print 2

Step 3: Final Output

12
8
6
4
2

Answered By

2 Likes


Related Questions