MCQs > IT & Programming > Java > Which is the right syntax of a javadoc comment for parameter of the method test(int)? public class Test125 { public static void main(String[] args) { new Test125().test(125); } public void test(int a) { for (int i=0; i

Java MCQs

Which is the right syntax of a javadoc comment for parameter of the method test(int)?

public class Test125 {

public static void main(String[] args) {

new Test125().test(125);

}

public void test(int a) {

for (int i=0; i<a; System.out.println(i++));

}

}

Answer

Correct Answer: @param a Description

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Java Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Java Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it