Q12Single correct3 Marks22 Dec 2024
Consider the following snippet of code. y is a real number. When compare(y, y) is called, which return statement in the function is executed?
```
def compare(m, n):
if m >= n:
return m, m
return n, m
```