Computer Science, asked by vinny7777, 8 months ago

Which of the function calls will cause error while invoking 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 Anonymous
3

First thing your question is wrong the test function should have some operations to do if I add print(a, b, c, d) in that function it will right.

Secondly all options are wrong except first one.

Answered by jayashreeirulappan
0

Explanation:

I think option 2 is the answer.

Reason: Because non default arguments should not follow default arguments

Hope it helps you.

Mark me as brainlist

AND

f.o.l.l.o.w m.e

Similar questions