Which of the function calls can be used to invoke the below function
definition? def test (a,b,c,d):
test(1.2,3,4)
test(a=1,b=2,c=3,4)
test(a=1,2,3,4)
test(a=1,b=2,c=3,d=4)
Answers
Answered by
0
4th Option
test(a=1,b=2,c=3,d=4)
Answered by
1
Answer:
A is also correct. D and a both are correct
Similar questions