Solutions to quiz4 version a --------------------------------------- Problem 1: ----------------- a) 3, int b) -9223372036854775808, int c) ill-formed expression, Zero-division error d)0.5, float e)202L, Long f)True, bool g)'0b100', str h)18.0, float i)30, int j) True, bool Problem2: ----------------- def numPrimes(L,U): count=L numOfPrimes=0 while count <= U: factors=numFactors(count) if factors == 2: numOfPrimes = numOfPrimes + 1 count = count + 1 return numOfPrimes