Computer Science, asked by mansurinhoque, 10 months ago

1.What is the flow chart of for loop?
2.what is the flowchart for do while loop?

Answers

Answered by yashshreesharma22
2

Answer:

1. The For Loop is a loop where the program tells the compiler to run a specific code FOR a specified number of times. ... For starters, this flowchart will help you.

2. The while loop evaluates the test expression inside the parenthesis () . If the test expression is true, statements inside the body of while loop are executed. Then, the test expression is evaluated again. The process goes on until the test expression is evaluated to false.

Explanation:

thanks

Similar questions