Java supports three types of comments: single-line comments using //, multi-line comments using /* /, and Javadoc documentation comments using /* */. Each serves different purposes in code documentation.
Java supports three comment styles: single-line (//), multi-line/traditional (/* ... */), and documentation comments (/** ... */) used by Javadoc. That's why 'Three' is correct.