Computer Science, asked by chiragsingh8833, 3 months ago

Consider below given function headers. Identify which of these will cause error and why
(1) def func(a = 1, b):
(ii) def func(a = 1, b, c = 2):
(iii) def func(a = 1, b = 1, c= 2):
(iv) def func(a = 1, b = 1, c = 2, d):​

Answers

Answered by jnath3934
0

Answer:

no. II will cause the error

Similar questions