MCQOPTIONS
Saved Bookmarks
| 1. |
Is the following piece of code valid? a={1,2,3} b={1,2,3,4} c=a.issuperset(b) print(c) |
| A. | False |
| B. | True |
| C. | Syntax error for issuperset() method |
| D. | Error, no method called issuperset() exists |
| Answer» B. True | |