Q. What is the purpose of `*args` in function definitions?
β
Correct Answer: (B)
To allow variable-length positional arguments
Explanation: `*args` allows a function to accept any number of positional arguments.