MCQOPTIONS
Saved Bookmarks
| 1. |
The output of the code shown below is: a=[1, 4, 3, 5, 2] b=[3, 1, 5, 2, 4] a==b set(a)==set(b) |
| A. | True False |
| B. | False False |
| C. | False True |
| D. | True True |
| Answer» D. True True | |