68.2k views
2 votes
An argument type followed by a(n) ________ in a method's parameter list indicates that the method receives a variable number of arguments of that particular type.

User Starlene
by
5.3k points

1 Answer

4 votes

Answer: Ellipsis

Step-by-step explanation:

The Ellipsis is one of the type of notation that is specifically used in the programming language for accepting the number of variable argument and denoting the various types of unspecified arguments. It is also known as VA (Variable argument).

  • The ellipses is mainly used in the parameter list for indicating the arguments receive with the specific type in the given method.
  • The ellipse is one of the type that are not use in multiple methods and it should be written the form of series.

Therefore, Ellipsis is the correct answer.

User Marcelo Camargo
by
5.4k points