CBSE Class 12 Computer Science Question 42 of 103

Working with Functions — Question 18

Back to all questions
18
Question

Question 18

Which of the given argument types can be skipped from a function call ?

  1. positional arguments
  2. keyword arguments
  3. named arguments
  4. default arguments
Answer

default arguments

Reason — A default argument is an argument with a default value in the function header, making it optional in the function call. The function call may or may not have a value for it.