question # 2\nmath formula\nwhat is the value of numc at the end of this loop?\nnumc = 12\nwhile numc > 3:\n…

question # 2\nmath formula\nwhat is the value of numc at the end of this loop?\nnumc = 12\nwhile numc > 3:\n numc = numc / 2
Answer
Explanation:
Step1: Initial value
numC = 12
Step2: First iteration
Since 12 > 3, numC = 12/2 = 6
Step3: Second iteration
Since 6 > 3, numC = 6/2 = 3
Step4: Check loop condition
3 is not greater than 3, loop stops.
Answer:
3