Correct Answer is: Both will be executed at least once
Explanation:
While loop
The condition is tested before the loop body is executed. If the condition is true, the loop body is executed, and then the condition is tested again. If the condition is false, the loop terminates.
Do while loop
A do while loop is similar to a while loop, but it is guaranteed to execute at least once.