16.
What will be the output of the following Python code snippet?
s=set([1, 2, 3])
s.union([4, 5])
s|([4, 5])

17.
What will be the output of the following Python code?
>>> a={3,4,5}
>>> a.update([1,2,3])
>>> a