21. The variable release_year_dict is a Python Dictionary, what is the result of applying the following method: release_year_dict.values() ?
- retrieve the keys of the dictionary
- retrieves, the values of the dictionary
22. Consider the Set: V={'A','B'}, what is the result of V.add('C')?
- error
- {‘A’,’B’}
- {‘A’,’B’,’C’}