Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
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
check_input(1, 3)
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
A
1
B
2
C
3
D
4
E
5