Computer Applications
How many times will the following loop execute?
int a = 5;
while (a > 0) {
System.out.println(a-- + 2);
if (a % 2 == 0)
break;
}
Java Iterative Stmts
3 Likes
Answer
1
Reason — Let's understand the execution of the loop step by step:
- Initially,
a = 5
, soSystem.out.println(5 + 2);
executes, anda
is decremented to4
. - Now,
a % 2 == 0
istrue
(since4 % 2 == 0
), so thebreak
statement is executed, exiting the loop. - Since the loop executes only once before breaking, the correct answer is 1 time.
Answered By
2 Likes
Related Questions
How many times will the following loop execute? Write the output of the code:
int x=10; while (true){ System.out.println(x++ * 2); if(x%3==0) break; }
Write a program in Java to find the Fibonacci series within a range entered by the user.
Sample Input:
Enter the minimum value: 10
Enter the maximum value: 20Sample Output:
13To execute a loop 10 times, which of the following is correct?
- for (int i=11;i<=30;i+=2)
- for (int i=11;i<=30;i+=3)
- for (int i=11;i<20;i++)
- for (int i=11;i<=21;i++)
How many times will the following loop execute? Write the output of the code:
int a = 5; while (a > 0) { System.out.println(a-- + 2); if (a % 3 == 0) break; }