Advertisements
Advertisements
Question
Differentiate between while and do while statements.
Distinguish Between
Solution
- While:
- In Java Script while loop is most basic loop.
- First condition will be evaluated and then only based on the result of the condition the body of the loop will be executed or not.
- While loop is false not a single statement inside the loop is executed.
- Do…while:
- The do…..while loop is like a while loop.
- The Body of the loop always executed at least once before the condition can be executed.
- Do while loop is false then also the body of the loop is executed.
shaalaa.com
Looping / Repetitive
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which of the following is not a looping statement?
Which part of the loop statement determines the number of times, the loop will be iterated?
In the _____ loop, body of the loop always executed at least once before the condition can be executed.
What is called a loop and what are its types?
Explain for loop with example.
Write a Java Script program using while statement to display 10 numbers.