Q1.Consider the following code snippet. What will be the output of this code?
```
x = 25
y = 40
if min(x, y) < 20:
result = min(x, y)
else:
result = x + y
print(result)
```
Save
Check
Details
Q1
23 Feb 2025
Q1.Consider the following code snippet. What will be the output of this code?
```
x = 25
y = 40
if min(x, y) < 20:
result = min(x, y)
else:
result = x + y
print(result)
```