Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David M Kroenke, David J Auer

6th Edition

0132742926, 978-0132742924

More Books

Students also viewed these Databases questions

Question

What is the general purpose of preliminary screening?

Answered: 1 week ago