Solutions to Quiz2, Version a ----------------------------- Problem 1: ---------- Line 2 6 3 Line 2 7 5 Line 1 8 7 Problem 2: ---------- N=int(raw_input("Enter the value of N:")) number=1 count=1 while number<=N: print number number=3**count count=count+1 P.S: This is only one of the possible solutions. You can have other solutions as well. 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