Asked by Alexis Davis on Sep 27, 2024

To mark a block comment for inclusion in the Javadoc documentation,the block must be delimited by:

A) /** */
B) */* */
C) **/ /*
D) **/ */

Block Comment

A section of code commented out in a program, meant for documentation or to disable code, typically spanning multiple lines.

Javadoc

A documentation generator for Java, useful for creating comprehensive API documentation from comments in the source code.

  • Comprehend Java documentation standards and comment usage.