What will be the output of the function check_input(1, 3) as defined below?\npython\ndef check_input(x, y):\n if x < y:\n x = x + 1\n if x < y:\n x = x + 1\n if x < y:\n x = x + 1\n return x\n
Real Exam
A
1
5.3%
B
2
16.4%
C
3
66.0%
D
4
8.8%
E
5
3.5%
Powered ByGPT-5.2
What will be the output of the function `check_input(1, 3)` as defined below?\n```python\ndef check_input(x, y):\n if x < y:\n x = x + 1\n if x < y:\n x = x + 1\n if x < y:\n x = x + 1\n return x\n``` | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz