How many times is the print statement executed? June 7, 2022 by admin ✪ Choose the correct option.How many times is the print statement executed?for i in range(10): for j in range(i): print(i * j)A. 100B. 20C. 10D. 45 Submit Answer