Card 15 / 76: Select the commenting style that uses symbols designed to work with Javadoc.
A)
// @author Robert
B)
/* @author Robert */
C)
/** @author Robert */
D)
/** @author Robert ;
Answer:
C) /** @author Robert */
Previous Card | ← Previous Card Button |
Next Card | → Next Card Button |
Flip Card | Space-Bar |
A, B, and D are incorrect.
A is incorrect because it shows a normal line comment.
B is incorrect because it shows a normal block comment.
D is incorrect because this Javadoc comment isn’t terminated properly; it must terminate with */.
|