Unconstrained Loop

What is unconstrained loop?
suggest some example.

Questions by vrushali

Showing Answers 1 - 6 of 6 Answers

vikz.pal

  • Jan 23rd, 2011
 

Unconstrained loop means loop that can't be handled as per our will.

Basic loop is a simple example of unconstrained loop - if we ignore proper exit statement in basic loop then it becomes an infinite loop which can't be controlled.
we should always use an EXIT statement to handle these kinda loops and avoid them from becoming unconstrained.
for loop and while loop are never unconstrained as they always work on conditions defined for them.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions