Solutions to Quiz2, Version c ----------------------------- Problem 1: ---------- Line 2 6 3 Line 2 7 3 Line 1 8 3 Line 2 8 2 Problem 2: ---------- N = int(raw_input("Enter a number: ")) i = 0 n = N for i in range(0,n): for j in range(0,n): if (i+j == N): print i, j Problem 3 --------- 1. float 9.0 2. float 12.0 3. bool True 4. int 8 5. bool False 6. bool True 7. float 2.5 8. float 3.0 9. bool True 10. bool True