Solutions to Quiz1.d --------------------- Problem 1 --------- 0 1 1 0 1 Problem 2 --------- 6 0 8 5 0 Problem 3 --------- 20 4 0 Problem 4 --------- Error 1: Input is not converted into integer before using it for arithmetic operations Correction: n=int(raw_input("Enter a positive integer: ")) Error 2: Counter should start from 2 as we are printing even numbers. Correction: counter = 2 Error 3: The variable count is not defined. We should print counter. Correction: print counter