In Java code, the line that begins with /* and ends with */ is known as? * Multiline comment Both A & B Single line comment None of these
Answers
Answered by
13
Answer:
multi line comment
mark as brainliast if you liked it
Answered by
0
In Java, the line that begins with /* and ends with */ is known as a Multiline comment
Multiline comment
- In Java, multiple lines of program statements can be commented on with the multi-line comment. The multi-line comment can be used to remark on numerous lines of program statements at once or to explain a complex program statements snippet since it will be difficult to use single-line comments there.
- Multi-line comments are placed between /* and */. Java does not execute any text between /* and */.
Similar questions