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


Please Help Members By Posting Answers For Below Questions

Differentiate abs() function from fabs() function.

815


What are the different types of constants?

854


Explain how do you declare an array that will hold more than 64kb of data?

1185


hi send me sample aptitude papers of cts?

1911


Why is c not oop?

753


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

2177


What does s c mean on snapchat?

805


how to construct a simulator keeping the logical boolean gates in c

2009


What is a rvalue?

964


How does struct work in c?

836


An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

919


What are control structures? What are the different types?

859


how to count no of words,characters,lines in a paragraph.

4166


how to create duplicate link list using C???

2286


Explain what does the format %10.2 mean when included in a printf statement?

1133