Part-4 | While Loop in JAVA | Counter & Sentinal Controlled Loop in JAVA | தமிழ்

Published: 19 June 2020
on channel: Programming Inspire
112
4

Java while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition.

Syntax
while (condition) {
// code block to be executed
}

Counter Controlled Loop:
When we know how many times loop body will be executed known as Counter Controlled Loop.
for example - print natural numbers from 1 to 100, such kind of problem will be solved using counter controlled loop.

Sentinel Controlled Loop:
When we don’t know exactly know how many times loop body will be executed known as Sentinel Controlled Loop.
for example - Reverse a given number, such kind of problem will be solved using sentinel controlled loop.


On this page of the site you can watch the video online Part-4 | While Loop in JAVA | Counter & Sentinal Controlled Loop in JAVA | தமிழ் with a duration of hours minute second in good quality, which was uploaded by the user Programming Inspire 19 June 2020, share the link with friends and acquaintances, this video has already been watched 112 times on youtube and it was liked by 4 viewers. Enjoy your viewing!