Answer by
Denny (14)
Recursion square root is a technique to find the square root of a number. This technique starts with a guess of the number's square root. A comparison is done to see how close the guess is to the actual square root (simply square the guess and compare it). Depending on the comparison, continually modify the guess until its close enough.