Computer Applications

Write different ways of using comments in Java.

Input in Java

22 Likes

Answer

There are 3 ways to give comments in Java:

  1. Single line comment (//)
  2. Multi line comment
    /* Line 1
         Line 2 */
  3. Documentation comment
    /**Line 1
         Line 2*/

Answered By

14 Likes


Related Questions