CBSE Class 12 Computer Science Question 25 of 101

Functions — Question 5

Back to all questions
5
Question

Question 5

Which of the following arguments works with implicit values that are used if no value is provided?

  1. keyword
  2. required
  3. variable-length
  4. default
Answer

default

Reason — Default arguments are used with implicit values that are used if no value is provided when calling the function. This is because default arguments are predefined values assigned to parameters in a function.