Advertisements
Advertisements
Question
Give the output of the following program segment. How many times is the loop executed?
for(x=10;x>20;x++)
System.out.println(x);
System.out.println(x*2);
One Line Answer
Solution
The for loop will run 0 times as the condition is false, and the loop is entry-controlled.
shaalaa.com
Types of Nested Loops
Is there an error in this question or solution?