which statement denotes a difference in the do-while and while loops in java? a do-while loop tests first and then executes, whereas a while loop executes first and tests later. a do-while loop executes first and then tests later, whereas a while loop tests first and then executes on a true condition. a do-while loop tests first and executes on a true condition, whereas a while loop executes first and tests for a true condition. a do-while loop executes first and then tests later for a condition, whereas the while loop executes first and executes later for any condition.