Asked by Ricardo Ortiz on May 13, 2024

verifed

Verified

In Java,a block comment is delimited by:

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

Block Comment

A block comment is a type of syntax in programming languages used to include a larger section of explanatory text or code explanation, typically spanning multiple lines, that is not executed.

Delimited

Refers to separating text strings or data with a specific character, such as a comma or tab, to distinguish individual elements.

  • Understand the conventions of Java documentation and the application of comments.
verifed

Verified Answer

YB
Yousef BakheetMay 17, 2024
Final Answer :
C
Explanation :
In Java, a block comment is delimited by /* and */. Option C shows the correct syntax for a block comment.