0 votes
in Ruby by
Explain do while loop in Ruby.

1 Answer

0 votes
by

Ruby do while loop iterates a part of program several times. In this, loop will execute at least once because do while condition is written at the end.

...