The exercise-1 editor asks you to write a while loop. These six ask what advances it toward termination, since a loop that never ends produces no output to debug from.
Applied Practice
6 questions · scenario driven · every answer is recorded for your teacher
Question 1 of 6Analyze
A while loop reads a value from input and never modifies its own counter inside the body.
Under what condition does it still terminate?
Incorrect. Java imposes no iteration limit.
Incorrect. It runs as long as the condition holds.
Incorrect. Too strong. Progress can come from outside the loop body.
Correct. Correct. What matters is that SOMETHING in the condition changes, not specifically a counter.
Question 2 of 6Apply
A sentinel loop should stop when the user enters -1, written as while (input != -1).
Where must the next read happen?
Incorrect. Reading inside a condition is legal in some languages but obscures the flow and is not the taught pattern.
Incorrect. Then the condition tests the same value forever.
Correct. Correct. The priming read plus the update read is the standard sentinel shape.
Incorrect. The first test would run against an uninitialized or stale value.
Question 3 of 6Analyze
A loop is written while (i < 10) with i incremented by 2 starting from 1.
How many times does the body run?
Incorrect. Ten would require a step of 1 from 0.
Correct. Correct: the odd values below 10.
Incorrect. Undercounts by one; 9 is still less than 10.
Incorrect. That counts every value, not every other one.
Question 4 of 6Apply
A loop must run at least once before its condition is checked.
Which structure fits?
Correct. Correct. Guaranteed first execution is exactly what do-while provides.
Incorrect. A for loop still tests before the first pass.
Incorrect. That adds a decision without changing when the loop tests.
Incorrect. That never stops without an added break.
Question 5 of 6Evaluate
A while loop's condition compares a double accumulated by repeated addition against an exact value.
Why might it fail to terminate?
Incorrect. Speed has no bearing on termination.
Incorrect. Binary floating point cannot represent many decimal values exactly.
Incorrect. They can; exact equality is the unreliable part.
Correct. Correct, and the fix is a relational test rather than an equality test.
Question 6 of 6Apply
A loop should stop early when a condition is met, but the surrounding method must still run cleanup afterward.
What is the appropriate mechanism?
Incorrect. That terminates the whole program.
Incorrect. Returning skips the cleanup the method still owes.
Correct. Correct. break exits the loop only.
Incorrect. continue keeps looping rather than leaving.
Whether you're a student, parent, or teacher — I'd love to hear from you.
Just want free AP CS resources?
Enter your email below and check the subscribe box — no message needed.
Students get daily practice questions and study tips. Teachers get curriculum resources and teaching strategies.
Typically responds within 24 hours
✓
Message Sent!
Thanks for reaching out. I'll get back to you within 24 hours.
34.8% of Tanner’s CSP students score 5s. The national average is 9.6%.
I’m a Student
I’m a Teacher
✓Free AP CSP Big Ideas cheat sheet (PDF)
✓Daily practice questions covering all 5 Big Ideas
✓Create Task tips that actually work — from a real AP teacher
✓Free class codes with student progress tracking
✓3 full practice exams + Top 100 questions for your class
✓Create Task guidance and pseudocode reference sheets
Which AP CS exams are you prepping for?
✓
You’re in!
Your Big Ideas cheat sheet is on its way.
No thanks, I’ll figure it out myself
Avg student improvement: 2+ score levels | Real AP teacher, not just a tutor
AP Cybersecurity — National Launch 2026–27
Get Early Access to AP Cyber
AP Cyber launches nationally fall 2026. Get in early to help shape the course — start free with Unit 1 and the free teacher gradebook.
✓
You’re in — you’re on the AP Cyber early-access list!
Tanner will follow up personally within 48 hours. Your feedback will directly shape what gets built.
Step 1 of 4
Early Access — Limited Spots
Who are you?
Are you a teacher or a student?
I’m a Teacher
I’m a Student
Free to start — Unit 1 and the teacher gradebook are always free, no credit card.
Founding teachers unlock all 5 units and get direct input on what we build.
Not interested right now
Step 2 of 4
Your School
Tell us about your class
Other AP CS courses you teach
Your Situation
Tell us about yourself
Step 3 of 4
Classroom Needs
What does your classroom need? (select all that apply)
How You Study
What would help you most? (select all that apply)
Step 4 of 4
Almost Done
Where should we send your early-access details?
Free gradebook + Unit 1 | Your feedback shapes the course | Built by a real AP teacher