1.
Q1: Enter the output of the following program or enter “invalid” if the statement would result in an error.
def first_func(a, b):
return a + b * c
def second_func(b, c):
return b / c
a = 10
b = 2
c = 6
print(first_func(a, second_func(b, c)))