MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the code shown below? a=set('abc') b=set('def') b.intersection_update(a) a b |
| A. | set() (‘e’, ‘d’, ‘f’} |
| B. | {} {} |
| C. | {‘b’, ‘c’, ‘a’} set() |
| D. | set() set() |
| Answer» D. set() set() | |