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
Explain the priority queues?
Why can’t constant values be used to define an array’s initial size?
What should malloc() do?
How can I split up a string into whitespace-separated fields?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What are Macros? What are its advantages and disadvantages?
Does c have circular shift operators?
What is a #include preprocessor?
How is a null pointer different from a dangling pointer?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What are # preprocessor operator in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
write a program to generate address labels using structures?
What does d mean?
Is boolean a datatype in c?