Q6Single correct3 Marks3 Sep 2023
Consider the following snippet of code. x is a real number. When minmax(x, x) is called, which return statement in the function is executed?
```
def minmax(a, b):
if a <= b:
return a, b
return b, a
```