Answer:
c. The do while stalement must execute at least once before checking if a condition is met
Explanation:
The condition is at the end, ie.,
do {
... stuff ...
} while (condition)
So it will be executed at least once, and the condition determines if it will execute again.