Quick Quiz!

We'll cover the following...
Technical Quiz
1.

What would the output of the following code be?

y = ("abc", "def", "ghi")
y[2][2] = ("j")
print(y)
A.
('abc', 'def', 'ghj')
B.
('abc', 'def', 'ghi')
C.
TypeError: 'tuple' object does not support item assignment
D.
TypeError: 'str' object does not support item assignment

1 / 3