From d09383fe64baa64e78f81abb79fe60ad4dc04d67 Mon Sep 17 00:00:00 2001 From: Ajit Garg <118595104+gargajit@users.noreply.github.com> Date: Sat, 29 Mar 2025 10:02:33 +0530 Subject: [PATCH] Update Refresher Iteration 1.md Since the value of `count` is not incremented. The while condition will always be true and hence the answer is `Infinite Loop` --- .../Python Refresher/Refresher Iteration 1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Academy DSA Typed Notes/Python Refresher/Refresher Iteration 1.md b/Academy DSA Typed Notes/Python Refresher/Refresher Iteration 1.md index 659f005..a56c67b 100644 --- a/Academy DSA Typed Notes/Python Refresher/Refresher Iteration 1.md +++ b/Academy DSA Typed Notes/Python Refresher/Refresher Iteration 1.md @@ -78,8 +78,8 @@ while(count < 10): **Choices** - [ ] 0 1 2 3 4 5 6 7 8 9 -- [ ] Infinite Loop -- [x] 10 10 10 10 10 10 10 10 10 10 +- [x] Infinite Loop +- [ ] 10 10 10 10 10 10 10 10 10 10 @@ -502,4 +502,4 @@ while(count <= 5): - [ ] 1 2 3 4 5 - [ ] 1 2 4 - [ ] 0 1 2 4 5 -- [x] Infinite Loop \ No newline at end of file +- [x] Infinite Loop