✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the code below. What will be printed out?
try:
i=4
j=[2,4,6,8]
print(j[i])
except IndexError:
print(“Oops! Error.”)
else:
print(“All OK.”)
finally:
print(“Bye bye.”)