Computer Applications
State the difference between entry controlled loop and exit controlled loop.
Java Iterative Stmts
ICSE 2011
9 Likes
Answer
| Entry controlled loop | Exit controlled loop |
|---|---|
| It checks the condition at the time of entry. Only if the condition is true, the program control enters the body of the loop. | It checks the condition after executing its body. If the condition is true, loop will perform the next iteration otherwise program control will move out of the loop. |
| Loop does not execute at all if the condition is false. | The loop executes at least once even if the condition is false. |
| Example: for and while loops | Example: do-while loop |
Answered By
6 Likes
Related Questions
To 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++)
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:
13