InterviewSolution
Saved Bookmarks
| 1. |
Question 22:Find the output of the following program:a ={}a['a']= 1a['b']=[2, 3, 4]print(a)(A) {‘b’: [2], ‘a’: 1}(B) {‘a’: 1, ‘b’: [2, 3, 4]}(C) {‘b’: [2], ‘a’: [3]}(D) Error |
| Answer» | |