Multiple choice technology programming languages

What should be the order of the @param tag when there are multiple parameters in the declaration ?

  1. Alphabetical order

  2. Random. No order.

  3. Argument-declaration order

  4. Based on the datatype

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Javadoc @param tags should follow the same order as parameters appear in the method or constructor declaration. This convention ensures documentation consistency with the actual code signature, making it easier for developers to correlate documentation with implementation.