What will happen when you run this program?
num = 10
while num > 0:
print (num)
O There will be no output. The loop condition is false.
• This is an infinite loop.
• Python will print 10 ten times.
O Python will print the integers from 10 to 1.


Answer :