Computer Science, asked by vinny7777, 9 months ago

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 DrNykterstein
0

4th Option

test(a=1,b=2,c=3,d=4)

Answered by dakshgirdhar11
1

Answer:

A is also correct. D and a both are correct

Similar questions