hugbug3394 hugbug3394 14-12-2022 Mathematics contestada Which of the following is a valid call to the function g and will have f(x) called 3 times? def g(x,y): if (x < 5): f(x) if (y < 10): f(x) f(x) answer choices g(5, 10) g(10, 5) g(4, 5) g(4, 10)