CBSE Class 12 Computer Science
Question 30 of 103
Working with Functions — Question 6
Back to all questionsdef f(a = 1, b = 1, c = 2):
Reason — In a function header, any parameter cannot have a default value unless all parameters appearing on its right have their default values.