What does do in java?

Answer:
You never write "do" seperately in Java. The only situation I can think of when you have to write "do" is in the "do while" statement.

This is the syntax:

do {
statement(s)
} while (expression);
First answer by ID1401311512. Last edit by ID1401311512. Question popularity: 0 [recommend question].