Select the valid fun () invocations:
(select two answers)
def fun (a, b=0):
return a*b
fun(b=1)
fun (a=0)
fun(b=1, 0)
fun (1)
Submit