Join GyanXp WhatsApp Channel! - Join Now
Correct Answer: tuple
arr = [(1, 1), (2, 2), (3, 3)]
Correct Answer: List of tuples
Correct Answer: none of the above
a = set('abc') b = set('cd') print(a ^ b)
Correct Answer: {'b', 'a', 'd'}
Correct Answer: Elements of tuple cannot be changed