# Trace this Python program and answer the following question:
k = 0
for j in range (1,4,1):
if (j == 2 or j == 8):
k = j * 3
else:
k = j + 1
print (“ k = “, k)
What is the first value of the variable j at the start of the program?
Group of answer choices
0
3
1
2