Computer Applications

Give the output of the following program segment and mention how many times the loop is executed.

int k = 100; 
while (k>=10) 
{
    System.out.println(k); 
    k-=40; 
}

Java

Java Iterative Stmts

3 Likes

Answer

100
60
20

The loop is executed 3 times.

Working

  • Initial value: k = 100 → printed, then reduced to 60.
  • Second iteration: k = 60 → printed, then reduced to 20.
  • Third iteration: k = 20 → printed, then reduced to -20.
  • Loop stops when k < 10.

Answered By

1 Like


Related Questions