cesiliagonzalez8069 cesiliagonzalez8069 30-01-2024 Computers and Technology contestada What will be the output of the following code? def my_func(var1=100, var2=200): var1+=10 var2 = var2 -10 return var1+ var2 print(my_func(50),my_func())a. 100 200 b. 150 300 c. 250 75 d. 250 300