MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the piece of code given below? def check(n): if n < 2: return n % 2 == 0 return check(n - 2) print(check(11)) |
| A. | False |
| B. | True |
| C. | 1 |
| D. | An exception is thrown |
| Answer» B. True | |