Quiz 3, Version A Solutions PROBLEM 1: (a) False (b) True (c) False (d) True (e) True PROBLEM 2: 20 16 12 8 --- 50 25 --- 80 --- PROBLEM 3: product = 1 n = int(raw_input("Enter a positive integer: ")) while (n%2 == 0) and (n>1): product = product * n n = int(raw_input("Enter a positive integer: ")) print "The product is:", product