If numbers are a two-dimensional int array that has been initialized and total is an int that has been set to 0, which of the following will sum all the elements in the array? a) total = sum(numbers) b) total = sum(sum(numbers)) c) for row in numbers: total += sum(row) d) total = sum(numbers[0]) + sum(numbers[1]) + ...