Set k = 1 Do Display k Set k = k + 1 Until k > 1

How many times will the following loop iterate?

Set k = 1
Do
Display k
Set k = k + 1
Until k > 1 


Answer: One


Python

Learn More Multiple Choice Question :