If the variable nums is a list of numbers, what does the value of c represent after this code is executed?
c = 0
for n in nums:
c += n
a. c is the sum of all the elements in the list
b. c is the largest value in the list
c. c is the count of the elements in the list
d. c is the product of all the elements in the list