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
Differentiate between static and dynamic modeling.
What is #include cctype?
How arrays can be passed to a user defined function
Can you please explain the difference between strcpy() and memcpy() function?
What is the difference between a string and an array?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is return in c programming?
What is the difference between a free-standing and a hosted environment?
What are the types of data files?
Explain modulus operator. What are the restrictions of a modulus operator?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are register variables? What are the advantage of using register variables?
The file stdio.h, what does it contain?
What is the concatenation operator?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?