49. What will be the output of `print(type({1, 2}))`? A. <class 'list'> B. <class 'tuple'> C. <class 'set'> D. <class 'dict'>
50. Which method is used to get all values from a dictionary? A. values() B. items() C. keys() D. get()