Study the following program:
x = ['xy', 'yz']
for i in a:
i.upper()
print(a)
Which of the following is correct output of this program?
A. [‘xy’, ‘yz’]
B. [‘XY’, ‘YZ’]
C. [None, None]
D. None of these
Correct Answer: Option A. [‘xy’, ‘yz’]