Text: fer
State
int x = 27, int y = 3;
do {
x = x / y;
} while (x >= y);

Which of the following loops is guaranteed to execute at least once?
a. for loop
b. counter-controlled while loop
c. sentinel-controlled while loop
d. do-while loop