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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started