Consider the following algorithm: m := 0p := 9while (p > 1)…
Consider the following algorithm: m := 0p := 9while (p > 1) if p is even p := p/2 m := m + 1 else p := p – 1end while Work through this algorithm by hand, starting from the first line. When the algorithm is finished, what is the final value of m? (Enter an integer.) _______ What is the final value of p? (Enter an integer.) _______ What is the final truth value of the loop condition (the statement in parentheses in the algorithm)? (Enter a single letter or word.) _______