Q. Which loop is guaranteed to run at least once? (A) do...while (B) for (C) while (D) foreach ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) do...while Explanation: do...while runs the loop body once before checking the condition.