MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the below program? def printMax(a, b): if a > b: print(a, 'is maximum') elif a == b: print(a, 'is equal to', b) else: print(b, 'is maximum') printMax(3, 4) |
| A. | 3 |
| B. | 4 |
| C. | 4 is maximum |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |