MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the code shown below? f=lambda x:bool(x%2) print(f(20), f(21)) |
| A. | False True |
| B. | False False |
| C. | True True |
| D. | True False |
| Answer» B. False False | |