jonj2575 jonj2575 02-01-2023 Computers and Technology Answered What is the last thing printed by the following program? start = 30 stop = 10 for i in range(start, stop - 1, -5): if i == 0: print(i * 2) else: print(i)