Embed presentation
Downloaded 22 times














This document discusses different types of looping structures in programming including entry controlled loops like while loops where the test condition is at the beginning, and exit controlled loops like do-while loops where the test condition is at the end. It provides examples of while and do-while loops, explaining that while loops use a counter variable to control the number of executions, whereas do-while loops always execute at least once before checking the condition.













