Question: implement and exercise the algorithm to verify its functionality. be sure to test with multiple values to insure its correct implementation. . The following algorithm

implement and exercise the algorithm to verify its functionality. be sure to test with multiple values to insure its correct implementation.
. The following algorithm finds the square root of a positive number Algorithm squareRoot Cnumber, lowGuess, highGuess, tolerance) newGuess (lowGuess + highGuess) / 2 if (ChighGuess - newGuess) / newGuess tolerance) return newGuess else if (newGuess newGuess number) return squareRoot (number, lowGuess, newGuess, tolerance) else if (newGuess newGuess
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
