Question: The following algorithm takes two positive integers and returns their multiplication. Multiply(a, b) 1sum=02whileb>0 3sum=sum+a 4b=b1 5 return sum Consider an instance of a=5 and

The following algorithm takes two positive integers and returns their multiplication. Multiply(a, b) 1sum=02whileb>0 3sum=sum+a 4b=b1 5 return sum Consider an instance of a=5 and b=8. Analyze the running time of the algorithm on this particular input. Fill in each blank with a number. (1) How many times will line 1 be executed? 4 (2) How many times will line 2 be executed? A (3) How many times will line 3 be executed? A (4) How many times will line 4 be executed? A (5) How many times will line 5 be executed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
