question # 2\nmultiple choice\nwhat is the next line?\n>>> mytuple = 10, 20, 50, 20, 20, 60\n>>>…

question # 2\nmultiple choice\nwhat is the next line?\n>>> mytuple = 10, 20, 50, 20, 20, 60\n>>> mytuple.index(50)\n3\n2\n1\n4
Answer
Explanation:
Step1: Recall list index rule
In Python, list indices start from 0.
Step2: Find index of 50
In the list [10, 20, 50, 20, 20, 60], the first element 10 has index 0, the second element 20 has index 1, and the third element 50 has index 2.
Answer:
B. 2