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.2%
B
2
16.3%
C
3
65.9%
D
4
9.0%
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