Classify parameters placed after a bare * or after an *args parameter. Which statements are true? Select all that apply.
A parameter after a bare * must be named in the call.✓Correct answer
The marker makes every preceding parameter keyword-only.
A keyword-only parameter cannot have a default.
A parameter after *args cannot be supplied positionally.✓Correct answer
Explanation
Parameters after either marker cannot be filled by additional positional arguments and must be named in the call. The marker affects following parameters, not preceding ones, and keyword-only parameters may still declare defaults.