Answer:
option E
x is 4
Step-by-step explanation:
x = 0
if x < 4: yes x is less than 4 so the if statement will be executed
x = x + 1 x = 0 + 1, x = 1 for next iteration
 x = 1 + 1, x = 2
 x = 2 + 1, x = 3
 x = 3 + 1, x = 4
 if statement keeps on executing till x < 4
print (""x is "" x) 
output will be, x is 4