Computer Science, asked by riza59, 11 months ago

What does h(3231) return for the following function definition? def h(x): (m,a) = (1,0) while m <= x: (m,a) = (m*2,a+1) return(a)​

Answers

Answered by vcharithacherry
2

Answer:

12

Explanation:

Similar questions