The following problem has several moving parts. Although it's a multiple choice question, we recommend reading the code carefully and coming to an understanding of what it does. 1| def main(): 2| counter = Counter() 3| num = 0 4| for x in range(0, 100): 5| incrementor(counter, num) 6| return (counter.count, num) 7| 8| def incrementor(c, num): 9| c.count = c.count + 1 10| num = num + 1 11| 12| class Counter: 13| def __init__(self): 14| self.count = 0 15| 16| a_tuple = main() What is stored in a_tuple after the above code is run?(0, 100) (100, 0) (100, 100) (0,0) Nothing; an error occurs before the code can end on its own.