maggied5565 maggied5565 18-01-2024 Computers and Technology contestada 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