Solutions to Quiz3.d --------------------- Problem 1 --------- False False True False True Problem 2 --------- 2 6 10 14 18 --- 4 20 36 --- 6 42 --- Problem 3 --------- sum = 0 n = int(raw_input("Enter a positive integer: ")) while (n>=0) and (n<=100): sum = sum + n n = int(raw_input("Enter a positive integer: ")) print "The sum is:", sum