The boolean condition that contains a while loop is called the loop while loop.
The while loop manages a block of code while a boolean expression considers to true. It terminates as soon as the word evaluates to false. The boolean expression is evaluated before each iteration.
The while loop is used when we don't know the digit of times it will repeat. If that number is unlimited, or the Boolean condition of the loop never gets set to False, then it will run forever.
To learn more about while loop, refer
https://brainly.com/question/19706610
#SPJ4