1|>def my_q(num, den, rec = False, neg = False):
2|>>>>if rec:
3|>>>>>if neg:
4|>>>>>>return den / -num
5|>>>>>else:
6|>>>>>>return den / num
7|>>>>else:
8|>>>>>return num / den
Q: Given above is the function definition for a function called my_q. Enter what will be returned by each of the following function calls. If an error would arise, enter "Error" (without quotes).
1. my_q(20.0, 0.0, rec = True)
2. my_q(4.0, 2.0, rec = False, neg = True)