✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the last output line of the code snippet given below?
for i in range(3) : for j in range(5) : if i % 2 == j % 2 : print("*", end="") else : print(" ", end="") print()