Question: Set p to 1 Set q to 2 Input n Set i to n while i is greater than 0 if i is odd then

Set p to 1 Set q to 2 Input n Set i to n while i is greater than 0 if i is odd then p = p*q q= q*q i= floor( i/2) print p Odd means 2 does not go into the number without remainder. Floor means round down. (a)Suppose a user inputs 10. Write in the table below, the values of i, p, q for each loop pass. Loop pass# i p q 1 2 3 4 5 (b)What is the relationship between the final p with respect to n and 2? Write a formula. (c)What is the relationship between n and number of loop passes? Write a formula that gives the number of loop passes where the variable is n. (d)Conclude from (c) above the big-O of this loop

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!