MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the code shown below? s=set([1, 2, 3]) s.union([4, 5]) s|([4, 5]) |
| A. | {1, 2, 3, 4, 5} {1, 2, 3, 4, 5} |
| B. | Error {1, 2, 3, 4, 5} |
| C. | {1, 2, 3, 4, 5} Error |
| D. | Error Error |
| Answer» D. Error Error | |