Question: his algorithm was made to find a solution to the problem of finding the square root of a given integer ( that is guaranteed to

his algorithm was made to find a solution to the problem of finding the square root of a given integer (that is guaranteed to be a square).
procedure findSquareRoot()
num :=1
while(num)
if (num * num)= a
return num {num is the square root of the given integer}
else
num = num +1
Which property does this algorithm lack?
Group of answer choices
Definiteness
Finiteness
Input
Effectiveness
Output

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!