Question 1
Which type of argument allows you to pass a dictionary of keyword-value pairs into a python function?
Question 2
Which keyword is used to specify variable-length keyword arguments in a python function?
Question 3
When using both variable-length positional and keyword arguments in a function, which order should be defined in the parameter list?
Question 4
Which of the following is a valid way to pass keyword arguments when calling a function in python?
Question 5
Which of the following is true about keyword arguments in python functions?
Question 6
In python, which type of argument allows you to pass an arbitrary number of non-keyword arguments into a function?
Question 7
What is the primary difference between positional and keyword arguments?
Question 8
What is the purpose of unpacking arguments in python functions?
Question 9
When using keyword arguments, can you change the order of argument values when calling a function?
Question 10
What is the purpose of default arguments in a python function?