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’}

23. What is the result of the following: '1' in {'1','2'} ?

  • False
  • True

Leave a Reply