Saved Bookmarks
| 1. |
What do you understand about an entry controlled loop in the context of OOPs programming? |
|
Answer» An entry control LOOP examines the condition at the point of entry and passes control to the body of the loop if the condition or expression becomes true. The name "entry control loop" comes from the FACT that this sort of loop REGULATES loop entry. for loops and while loops are EXAMPLES of entry controlled loops. |
|