Q. How to write a comment on a single line?
β
Correct Answer: (D)
All of the above
Explanation: If your comment is short, you should use a double slash (//) followed by your comment. For example:
// this is a comment
If your comment is long, type your comment between (/* and */). For example:
/* this is a
multi-line
comment */
// this is a comment
If your comment is long, type your comment between (/* and */). For example:
/* this is a
multi-line
comment */