How many times will the loop body execute?
x = 3
while x >= 0:
X = X - 1
3
4
5
6

Answer:
B. 4
Explanation:
Rules :
x = x - 1
if x = 3, so :
x = x - 1
4 = 4 - 1
4 = 3
Option B