Multiple choice technology programming languages

Can we give argument values to the parameters which are not at the end of the parameter list in the function definition ?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Python, you cannot skip parameters when providing positional arguments. To assign values to non-trailing parameters, you must use keyword arguments (parameter_name=value).