Which command will compile a comment?
-
/* -------- */
-
* -------- *\
-
^----^/
-
;)
A
Correct answer
Explanation
While compilers actually ignore comments rather than compiling them, the question asks for the correct syntax of a comment block. The syntax /* -------- */ is the standard multi-line comment format in Java.