Conditional Loops :

A conditional loop repeats execution based on the evaluation of a condition whose
final value may not be known in advance. Such loops continue executing as long as
the specified condition remains true.

Conditional loops are useful in situations where repetition depends on input data
or computed results rather than a fixed count.
Previous Next