Q. What is the main difference between a WHILE and a DO-WHILE loop in Java?
β
Correct Answer: (B)
DO-WHILE loop executes the statements inside of it at least once even if the condition is false.
You must be Logged in to update hint/solution