cbse computer science chapter wise questions answers
: ")) c = int(input("Enter third number: ")) if a >= b and a >= c: print("Largest number is", a) elif b >= a and b >= c: print("Largest number is", b) else: print("Largest number is", c) ``` Q2: Explain the purpose of a function in programming. A: A function is a reusabl