Company Exam
Interview Question
Interview Experience
Quants
Reasoning
Verbal
MCQs
Tutorials
DSA
Ques 1 Function
What is the output of the following Python Code?
def calculate(a, b): return b if a == 0 else solve(b % a, a) res=calculate(5,10) print(res)