233k views
1 vote
"Just as arrays can only have a fixed number of elements, set at the time the array is declared, a parameter list also can only have a fixed number of elements, set at the time the method is declared."

A. false
B. true

User Gaoithe
by
5.0k points

1 Answer

5 votes

Answer:

FALSE

Step-by-step explanation:

Cant say for other programming language but for java it provides special notation for variable length parameter lists. The ellipsis (...) is used to specify a variable length parameter list.

User Yuvrajsinh
by
5.3k points