C Programming - Variable Number of Arguments

Exercise : Variable Number of Arguments - Yes / No Questions
1.
Can we pass a variable argument list to a function at run-time?
Yes
No
Answer: Option
Explanation:
Every actual argument list must be known at compile time. In that sense it is not truly a variable argument list.

2.
While defining a variable argument list function we drop the ellipsis(...)?
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.

3.
Is it necessary that in a function which accepts variable argument list there should be at least be one fixed argument?
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.

4.
Can we write a function that takes a variable argument list and passes the list to another function?
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.

5.
Can the fixed arguments passed to the function that accepts variable argument list, occur at the end?
Yes
No
Answer: Option
Explanation:
No answer description is available. Let's discuss.