1. 

Can we pass a variable argument list to a function at run-time?

A. Yes
B. No

2. 

While defining a variable argument list function we drop the ellipsis(...)?

A. Yes
B. No

3. 

Is it necessary that in a function which accepts variable argument list there should be at least be one fixed argument?

A. Yes
B. No

4. 

Can we write a function that takes a variable argument list and passes the list to another function?

A. Yes
B. No

5. 

Can the fixed arguments passed to the function that accepts variable argument list, occur at the end?

A. Yes
B. No