what is the difference between entry control and exit
control statement?
Answer Posted / fernando torres 9
Entry control is otherwise called as WHILE loop,because the
while loop checks the condition at first,and then only
execute the following instructions.
Exit control is also called as DO WHILE loop,because the do
while loop checks the condition at last
Entry Comtrolled will check the Condition at First and
doesn't execute if it is False.
Exit Comtrolled will check the Condition at Last and at
least once the statement will execute though it is False .
In Entry controlled loop the test condition is checked
first and if that condition is true than the block of
statement in the loop body will be executed while in exit
controlled loop the body of loop will be executed first and
at the end the test condition is checked,if condition is
satisfied than body of loop will be executed again.
How's Thisssssssszzzzzzzz.........
| Is This Answer Correct ? | 95 Yes | 23 No |
Post New Answer View All Answers
What is the difference between union and anonymous union?
What is the difference between #include
Write a code to generate divisors of an integer?
how to find binary of number?
What is infinite loop?
How do I round numbers?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
swap 2 numbers without using third variable?
Tell me can the size of an array be declared at runtime?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Compare and contrast compilers from interpreters.
What is difference between main and void main?
Explain function?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
What does malloc () calloc () realloc () free () do?