Computer Science, asked by aayanshrestha, 5 hours ago

3 types of looping structure with syntax(if u will answer right ans i will mark u as brainlist)​

Answers

Answered by pradhanasmita952
1

Visual Basic has three main types of loops next loops, do loops and while loops.

Answered by mankaransingh27
0

1. While Loop In while loop, a condition is evaluated before processing a body of the loop. If a condition is true then and only then the body of a loop is executed.

2. Do-While Loop In a do…while loop, the condition is always executed after the body of a loop. It is also called an exit-controlled loop.

3. For Loop In a for loop, the initial value is performed only once, then the condition tests and compares the counter to a fixed value after each iteration, stopping the for loop when false is returned.

Similar questions