Question: 3. The following code can lead to an infinite loop. Fix the code so that it can finish successfully for all numbers. Note: Try running

3. The following code can lead to an infinite loop. Fix the code so that it can finish successfully for all numbers. Note: Try running your function with the number 0 as the input, and see what you get! AWN 1 - def is_power_of_two(n): 2 # Check if the number can be divided by two without a remainder while n % 2 == 0: n = n / 2 # If after dividing by two the number is 1, it's a power of two if n == 1: return True return false Run cos Reset 10 is_power_of_two(0)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
