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