Solutions to Quiz4.d --------------------- Problem 1 --------- 2, int -9223372036854775808, long ill formed, zero division error False, bool 202, long True, bool ob100, str 18, float 34, int True, bool Problem 2 --------- def nextPerfect(M): N = M while (N >= M): if factorSum(N) - N == N: return N else: N = N+1