Module 3: While loops Flashcards
body of the loop should change ________ so condition becomes false eventually and loop terminates.
value of one or more variables
________ is a way of computing square roots.
babylonian method
The babylonian method uses the formula _______.
y = (g + (a/g))/2
debugging by _______ is when you break the problem in half to find bugs.
bisection
_______ is a general process for solving a category of problems.
algorithm
in python a function is a ______, a number is a _______ and a string is a ________
value x3
If the condition of a while loop is _______, it exits the while statement and continues execution at the next statement.
false
If the condition of a while loop is ______, it runs the body and then goes back step 1.
true
The body of a while loop needs to change ________ variables so the condition eventually becomes _______ and terminates.
1 or more
false