InterviewSolution
Saved Bookmarks
| 1. |
Which are the entry controlled loop a for and while b do while c if else d else if |
|
Answer» Entry controlled LOOP is a loop in which the test condition is checked first, and then loop BODY will be EXECUTED. EXPLANATION:do and while examples of entry controlled loops, whereas do-while loop is an example of exit controlled loop. |
|