Computer Science, asked by ashmidev007, 1 month ago

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

i) positional arguments ii) keyword arguments iii) default arguments​

Answers

Answered by OtKpopStans
19

Explanation:

you can choose to have a formal argument or not in the function definition along with the variable arguments. You may choose to skip the variable arguments while calling the function. In such a case, the tuple would remain empty.

Answered by aditya2004ksingh
7

Mark me as the brainliest

Answer:

(ii) Default argument

Explanation:

During a function call, only giving mandatory argument as a keyword argument. Optional default arguments are skipped.

Similar questions