Write the output of the following statements:
(a) >>> tuple([10,20,40])
(b) >>> ("Tea",)*5
(c) >>> tuple ("Item")
(a)
(10, 20, 40)
(b)
('Tea', 'Tea', 'Tea', 'Tea', 'Tea')
(c)
('I', 't', 'e', 'm')