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)
The time limit has expired and your responses have been submitted.