Evaluate this code n = int(input("Enter n: ")) total = 0 k = 1 while k <= n: total += k**3 k += 1 print('sum of the cubes of the first n counting numbers: ', total) a) Computes the sum of squares b) Computes the sum of cubes c) Computes the factorial d) Computes the average