SEN1011 (1-3 & 901-906)...
Overview
Plans
Resources
Follow-up and reports
Participants
More
Question 6
Assuming that the function below is defined properly:
def func(number1=8, number2=9, number3=10):
if number1 == 8:
print("the first")
elif number2 == number1/2:
print("the second")
else:
print("the third")
What will be the output of the following function call:
func(10,5)